poetry-semver: init at 0.1.0
This commit is contained in:
parent
bf7a1e2021
commit
960f59ba72
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/poetry-semver/default.nix
Normal file
24
pkgs/development/python-modules/poetry-semver/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "poetry-semver";
|
||||||
|
version = "0.1.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-2Am2Eqons5vy0PydMbT0gJsOlyZGxfGc+kbHJbdjiBA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5566,6 +5566,8 @@ in {
|
||||||
|
|
||||||
poetry-core = callPackage ../development/python-modules/poetry-core { };
|
poetry-core = callPackage ../development/python-modules/poetry-core { };
|
||||||
|
|
||||||
|
poetry-semver = callPackage ../development/python-modules/poetry-semver { };
|
||||||
|
|
||||||
poezio = callPackage ../applications/networking/instant-messengers/poezio { };
|
poezio = callPackage ../applications/networking/instant-messengers/poezio { };
|
||||||
|
|
||||||
polib = callPackage ../development/python-modules/polib { };
|
polib = callPackage ../development/python-modules/polib { };
|
||||||
|
|
Loading…
Reference in a new issue