python312Packages.yoda: 2.0.1 -> 2.0.2
[NixPkgs.git] / pkgs / development / python-modules / poetry-semver / default.nix
blobdf4ef9c76f0e058c49b2b52a8081f5e946375df5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "poetry-semver";
10   version = "0.1.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-2Am2Eqons5vy0PydMbT0gJsOlyZGxfGc+kbHJbdjiBA=";
16   };
18   nativeCheckInputs = [ pytestCheckHook ];
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   };