python312Packages.looseversion: refactor

This commit is contained in:
Fabian Affolter
2024-05-18 21:14:55 +02:00
parent 27851edc9d
commit bc5b13fb43
@@ -1,33 +1,43 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, hatchling
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "looseversion";
version = "1.3.0";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit version pname;
sha256 = "sha256-695l8/a7lTGoEBbG/vPrlaYRga3Ee3+UnpwOpHkRZp4=";
hash = "sha256-695l8/a7lTGoEBbG/vPrlaYRga3Ee3+UnpwOpHkRZp4=";
};
nativeBuildInputs = [
build-system = [
hatchling
];
nativeCheckInputs = [
pytestCheckHook
];
pytestFlagsArray = [ "tests.py" ];
pythonImportsCheck = [ "looseversion" ];
pytestFlagsArray = [
"tests.py"
];
pythonImportsCheck = [
"looseversion"
];
meta = with lib; {
description = "Version numbering for anarchists and software realists";
homepage = "https://github.com/effigies/looseversion";
changelog = "https://github.com/effigies/looseversion/blob/${version}/CHANGES.md";
license = licenses.psfl;
maintainers = with maintainers; [ pelme ];
};