mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
python310Packages.fs: propagate setuptools
fixes pkgsCross.aarch64-multiplatform.python310Packages.statmake > ERROR: Could not find a version that satisfies the requirement setuptools (from fs) (from versions: none) > ERROR: No matching distribution found for setuptools
This commit is contained in:
parent
9c7c0650c5
commit
9f7c464ec3
@ -2,6 +2,7 @@
|
||||
, glibcLocales
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
, six
|
||||
, appdirs
|
||||
, scandir ? null
|
||||
@ -32,7 +33,7 @@ buildPythonPackage rec {
|
||||
# strong cycle with paramaterized
|
||||
doCheck = false;
|
||||
checkInputs = [ pyftpdlib mock psutil pytestCheckHook ];
|
||||
propagatedBuildInputs = [ six appdirs pytz ]
|
||||
propagatedBuildInputs = [ six appdirs pytz setuptools ]
|
||||
++ lib.optionals (!isPy3k) [ backports_os ]
|
||||
++ lib.optionals (!pythonAtLeast "3.6") [ typing ]
|
||||
++ lib.optionals (!pythonAtLeast "3.5") [ scandir ]
|
||||
|
Loading…
Reference in New Issue
Block a user