about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/poetry-semver/default.nix
blob: 422dbd04f881e01ff56897b258acc89a9734fb0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "poetry-semver";
  version = "0.1.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-2Am2Eqons5vy0PydMbT0gJsOlyZGxfGc+kbHJbdjiBA=";
  };

  nativeCheckInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "A semantic versioning library for Python.";
    homepage = "https://github.com/python-poetry/semver";
    license = licenses.mit;
    maintainers = with maintainers; [ cpcloud ];
  };
}