mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.pyrr: init at 0.7.0
This commit is contained in:
parent
10b8c8496a
commit
7e1ce60869
1 changed files with 21 additions and 0 deletions
|
@ -14788,6 +14788,27 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
pyrr = buildPythonPackage rec {
|
||||
name = "pyrr-${version}";
|
||||
version = "0.7.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/p/pyrr/pyrr-${version}.tar.gz";
|
||||
sha256 = "ddfcd83394e9703138a3c668747df3548a81238d8ab36d4bf6a84d25ea90b2cd";
|
||||
};
|
||||
|
||||
# ImportError: No module named tests
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = with self; [ multipledispatch numpy ];
|
||||
|
||||
meta = {
|
||||
description = "3D mathematical functions using NumPy";
|
||||
homepage = https://github.com/adamlwgriffiths/Pyrr/;
|
||||
license = licenses.bsd2;
|
||||
};
|
||||
};
|
||||
|
||||
pyx = buildPythonPackage rec {
|
||||
name = "pyx-${version}";
|
||||
version = "0.14.1";
|
||||
|
|
Loading…
Reference in a new issue