Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 27 lines 593 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, setuptools 5, multipledispatch 6, numpy 7}: 8 9buildPythonPackage rec { 10 version = "0.10.2"; 11 pname = "pyrr"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "1q9i4qa6ygr8hlpnw55s58naynxzwm0sc1m54wyy1ghbf8m8d2f0"; 16 }; 17 18 buildInputs = [ setuptools ]; 19 propagatedBuildInputs = [ multipledispatch numpy ]; 20 21 meta = with stdenv.lib; { 22 description = "3D mathematical functions using NumPy"; 23 homepage = https://github.com/adamlwgriffiths/Pyrr/; 24 license = licenses.bsd2; 25 maintainers = with maintainers; [ c0deaddict ]; 26 }; 27}