nixpkgs/pkgs/development/python-modules/semantic-version/default.nix
2022-02-15 09:11:03 +01:00

36 lines
700 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "semantic-version";
version = "2.9.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "semantic_version";
inherit version;
sha256 = "sha256-q/VIc1U+Xgem/U1fZTt4H1rkEpekk2ZrWdzyFABqErI=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"semantic_version"
];
meta = with lib; {
description = "A library implementing the 'SemVer' scheme";
homepage = "https://github.com/rbarrois/python-semanticversion/";
license = licenses.bsd2;
maintainers = with maintainers; [ layus makefu ];
};
}