poetry-semver: init at 0.1.0

This commit is contained in:
Phillip Cloud 2021-09-01 07:51:12 -04:00
parent bf7a1e2021
commit 960f59ba72
No known key found for this signature in database
GPG Key ID: D908212070FD785E
2 changed files with 26 additions and 0 deletions

View 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 ];
};
}

View File

@ -5566,6 +5566,8 @@ in {
poetry-core = callPackage ../development/python-modules/poetry-core { };
poetry-semver = callPackage ../development/python-modules/poetry-semver { };
poezio = callPackage ../applications/networking/instant-messengers/poezio { };
polib = callPackage ../development/python-modules/polib { };