mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 20:14:37 +00:00
python3Packages.expiringdict: use PEP 517 builder
This commit is contained in:
parent
34d1affd6e
commit
ead5eba6b3
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user