at 18.09-beta 548 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, setuptools, multipledispatch, numpy }: 3 4buildPythonPackage rec { 5 version = "0.7.2"; 6 pname = "pyrr"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "04a65a9fb5c746b41209f55b21abf47a0ef80a4271159d670ca9579d9be3b4fa"; 11 }; 12 13 buildInputs = [ setuptools ]; 14 propagatedBuildInputs = [ multipledispatch numpy ]; 15 16 meta = with stdenv.lib; { 17 description = "3D mathematical functions using NumPy"; 18 homepage = https://github.com/adamlwgriffiths/Pyrr/; 19 license = licenses.bsd2; 20 }; 21}