Skip to content

Commit

Permalink
python3Packages.expiringdict: use PEP 517 builder
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKvalheim committed Jul 13, 2024
1 parent 34d1aff commit ead5eba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/python-modules/expiringdict/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -36,6 +37,8 @@ buildPythonPackage rec {
})
];

build-system = [ setuptools ];

nativeCheckInputs = [
dill
mock
Expand Down

0 comments on commit ead5eba

Please sign in to comment.