1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 20:36:27 +00:00

python.pkgs.keyring: fix build

This commit is contained in:
Frederik Rietdijk 2020-06-11 12:38:23 +02:00
parent 0b292e7ee3
commit 1becbef8d9

View file

@ -6,6 +6,7 @@
, pytest-flake8
, secretstorage
, setuptools_scm
, toml
}:
buildPythonPackage rec {
@ -18,7 +19,10 @@ buildPythonPackage rec {
sha256 = "c53e0e5ccde3ad34284a40ce7976b5b3a3d6de70344c3f8ee44364cc340976ec";
};
nativeBuildInputs = [ setuptools_scm ];
nativeBuildInputs = [
setuptools_scm
toml
];
checkInputs = [ pytest pytest-flake8 ];