mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.root_numpy: add setuptools dependency
This commit is contained in:
parent
b6d8873825
commit
12cc27b1ef
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, root, nose }:
|
||||
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, root, nose, setuptools }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "root_numpy";
|
||||
|
@ -16,7 +16,7 @@ buildPythonPackage rec {
|
|||
nosetests -s -v root_numpy
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ numpy root ];
|
||||
propagatedBuildInputs = [ numpy root setuptools ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = http://scikit-hep.org/root_numpy;
|
||||
|
|
Loading…
Reference in a new issue