mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #55745 from veprbl/pr/pandas_dont_propagate_cython
pythonPackages.pandas: don't propagate cython dependency
This commit is contained in:
commit
f6bffa0069
1 changed files with 1 additions and 2 deletions
|
@ -37,9 +37,8 @@ in buildPythonPackage rec {
|
||||||
|
|
||||||
checkInputs = [ pytest glibcLocales moto ];
|
checkInputs = [ pytest glibcLocales moto ];
|
||||||
|
|
||||||
buildInputs = [] ++ optional isDarwin libcxx;
|
buildInputs = [ cython ] ++ optional isDarwin libcxx;
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
cython
|
|
||||||
dateutil
|
dateutil
|
||||||
scipy
|
scipy
|
||||||
numexpr
|
numexpr
|
||||||
|
|
Loading…
Reference in a new issue