python3Packages.expiringdict: use PEP 517 builder

This commit is contained in:
Andrew Kvalheim 2024-07-13 05:36:26 -07:00
parent 34d1affd6e
commit ead5eba6b3

View File

@ -6,12 +6,13 @@
dill,
mock,
pytestCheckHook,
setuptools
}:
buildPythonPackage rec {
pname = "expiringdict";
version = "1.2.2";
format = "setuptools";
pyproject = true;
# use fetchFromGitHub instead of fetchPypi because the test suite of
# the package is not included into the PyPI tarball
@ -36,6 +37,8 @@ buildPythonPackage rec {
})
];
build-system = [ setuptools ];
nativeCheckInputs = [
dill
mock