python312Packages.pyleri: refactor

This commit is contained in:
Fabian Affolter 2024-03-28 09:41:36 +01:00 committed by GitHub
parent f8e4c8f973
commit fe9305ffde
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions

View File

@ -3,12 +3,13 @@
, fetchFromGitHub
, pythonOlder
, unittestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "pyleri";
version = "1.4.3";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -19,6 +20,10 @@ buildPythonPackage rec {
hash = "sha256-4t+6wtYzJbmL0TB/OXr89uZ2s8DeGlUdWwHd4YPsCW0=";
};
build-system = [
setuptools
];
nativeCheckInputs = [
unittestCheckHook
];