forked from mirrors/nixpkgs
python3Packages.keyrings-alt: fix build
This commit is contained in:
parent
2ebbe387c4
commit
fbec077998
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, isPy27, six
|
||||
, pytest, backports_unittest-mock, keyring, setuptools_scm
|
||||
, pytest, backports_unittest-mock, keyring, setuptools_scm, toml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||
--replace "--flake8" ""
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ setuptools_scm ];
|
||||
nativeBuildInputs = [ setuptools_scm toml ];
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
checkInputs = [ pytest keyring ] ++ stdenv.lib.optional (pythonOlder "3.3") backports_unittest-mock;
|
||||
|
|
Loading…
Reference in a new issue