python312Packages.minidb: refactor

This commit is contained in:
Fabian Affolter
2024-05-11 21:38:31 +02:00
parent 5331891aa6
commit ecf4a6d793
@@ -3,12 +3,13 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "minidb";
version = "2.0.8";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -19,6 +20,10 @@ buildPythonPackage rec {
hash = "sha256-e7wVR+xr+5phNoRnGIxnmrjB1QU9JmyfQiu88PYapA8=";
};
build-system = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];