at 22.05-pre 597 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, setuptools 5, multipledispatch 6, numpy 7}: 8 9buildPythonPackage rec { 10 version = "0.10.3"; 11 pname = "pyrr"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "3c0f7b20326e71f706a610d58f2190fff73af01eef60c19cb188b186f0ec7e1d"; 16 }; 17 18 buildInputs = [ setuptools ]; 19 propagatedBuildInputs = [ multipledispatch numpy ]; 20 21 meta = with 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}