1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytestCheckHook,
6}:
7
8buildPythonPackage rec {
9 pname = "poetry-semver";
10 version = "0.1.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-2Am2Eqons5vy0PydMbT0gJsOlyZGxfGc+kbHJbdjiBA=";
16 };
17
18 nativeCheckInputs = [ pytestCheckHook ];
19
20 meta = with lib; {
21 description = "Semantic versioning library for Python";
22 homepage = "https://github.com/python-poetry/semver";
23 license = licenses.mit;
24 maintainers = with maintainers; [ cpcloud ];
25 };
26}