python312Packages.priority: cleanup

This commit is contained in:
FliegendeWurst 2025-01-15 15:37:40 +01:00
parent d9e9853753
commit 84c720f34d

View File

@ -5,19 +5,25 @@
fetchPypi, fetchPypi,
hypothesis, hypothesis,
pytestCheckHook, pytestCheckHook,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "priority"; pname = "priority";
version = "2.0.0"; version = "2.0.0";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.6.1";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "c965d54f1b8d0d0b19479db3924c7c36cf672dbf2aec92d43fbdaf4492ba18c0"; sha256 = "c965d54f1b8d0d0b19479db3924c7c36cf672dbf2aec92d43fbdaf4492ba18c0";
}; };
build-system = [
setuptools
];
pythonImportsCheck = [ "priority" ]; pythonImportsCheck = [ "priority" ];
nativeCheckInputs = [ nativeCheckInputs = [