mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #10927 from FRidh/numtraits
python numtraits: init at 0.2
This commit is contained in:
commit
a514476e1b
1 changed files with 20 additions and 0 deletions
|
@ -10263,6 +10263,26 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
numtraits = buildPythonPackage rec {
|
||||
name = "numtraits-${version}";
|
||||
version = "0.2";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/n/numtraits/${name}.tar.gz";
|
||||
sha256 = "2fca9a6c9334f7358ef1a3e2e64ccaa6a479fc99fc096910e0d5fbe8edcdfd7e";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pytest ];
|
||||
propagatedBuildInputs = with self; [ numpy traitlets];
|
||||
|
||||
meta = {
|
||||
description = "Numerical traits for Python objects";
|
||||
license = licenses.bsd2;
|
||||
maintainer = with maintainers; [ fridh ];
|
||||
homepage = https://github.com/astrofrog/numtraits;
|
||||
};
|
||||
};
|
||||
|
||||
nwdiag = buildPythonPackage rec {
|
||||
name = "nwdiag-1.0.3";
|
||||
|
||||
|
|
Loading…
Reference in a new issue