pythonPackages.pyrr : move to separate expression

This commit is contained in:
wisut hantanong 2017-08-31 21:02:44 +07:00
parent 80ca1cae8b
commit b9eebaf8bb
2 changed files with 23 additions and 11 deletions

View 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;
};
}

View file

@ -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";