rootpy: 0.9.0 -> 1.0.1
This commit is contained in:
parent
31b2e70f8d
commit
a3bc5d6ae6
23
pkgs/development/python-modules/rootpy/default.nix
Normal file
23
pkgs/development/python-modules/rootpy/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, matplotlib, root, root_numpy, tables }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "rootpy";
|
||||||
|
version = "1.0.1";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0zp2bh87l3f0shiqslbvfmavfdj8m80y8fsrz8rsi5pzqj7zr1bx";
|
||||||
|
};
|
||||||
|
|
||||||
|
disabled = isPy3k;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ matplotlib numpy root root_numpy tables ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = http://www.rootpy.org;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
description = "Pythonic interface to the ROOT framework";
|
||||||
|
maintainers = with maintainers; [ veprbl ];
|
||||||
|
};
|
||||||
|
}
|
@ -18921,25 +18921,7 @@ in {
|
|||||||
|
|
||||||
root_numpy = callPackage ../development/python-modules/root_numpy { };
|
root_numpy = callPackage ../development/python-modules/root_numpy { };
|
||||||
|
|
||||||
rootpy = buildPythonPackage rec {
|
rootpy = callPackage ../development/python-modules/rootpy { };
|
||||||
version = "0.9.0";
|
|
||||||
name = "rootpy-${version}";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/r/rootpy/${name}.tar.gz";
|
|
||||||
sha256 = "04alx6afiyahhv816f6zpwnm0sx2jxgqpgqcn6kdw0wnpc9625cr";
|
|
||||||
};
|
|
||||||
|
|
||||||
disabled = isPy3k;
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ pkgs.root numpy matplotlib ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "http://www.rootpy.org";
|
|
||||||
license = licenses.gpl3;
|
|
||||||
description = "Pythonic interface to the ROOT framework";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
rope = buildPythonPackage rec {
|
rope = buildPythonPackage rec {
|
||||||
version = "0.10.2";
|
version = "0.10.2";
|
||||||
|
Loading…
Reference in New Issue
Block a user