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:
parent
0b292e7ee3
commit
1becbef8d9
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue