pythonPackages.pyrr : move to separate expression
This commit is contained in:
parent
80ca1cae8b
commit
b9eebaf8bb
22
pkgs/development/python-modules/pyrr/default.nix
Normal file
22
pkgs/development/python-modules/pyrr/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, setuptools, multipledispatch, numpy }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.7.2";
|
||||
pname = "pyrr";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "04a65a9fb5c746b41209f55b21abf47a0ef80a4271159d670ca9579d9be3b4fa";
|
||||
};
|
||||
|
||||
buildInputs = [ setuptools ];
|
||||
propagatedBuildInputs = [ multipledispatch numpy ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "3D mathematical functions using NumPy";
|
||||
homepage = https://github.com/adamlwgriffiths/Pyrr/;
|
||||
license = licenses.bsd2;
|
||||
};
|
||||
}
|
@ -17817,17 +17817,7 @@ in {
|
||||
proj = null;
|
||||
};
|
||||
|
||||
pyrr = buildPythonPackage rec {
|
||||
name = "pyrr-${version}";
|
||||
version = "0.7.2";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/pyrr/pyrr-${version}.tar.gz";
|
||||
sha256 = "04a65a9fb5c746b41209f55b21abf47a0ef80a4271159d670ca9579d9be3b4fa";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ setuptools ];
|
||||
propagatedBuildInputs = with self; [ multipledispatch numpy ];
|
||||
pyrr = callPackage ../development/python-modules/pyrr { };
|
||||
|
||||
meta = {
|
||||
description = "3D mathematical functions using NumPy";
|
||||
|
Loading…
Reference in New Issue
Block a user