at 24.11-pre 695 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 setuptools, 6 multipledispatch, 7 numpy, 8}: 9 10buildPythonPackage rec { 11 pname = "pyrr"; 12 version = "unstable-2022-07-22"; 13 format = "setuptools"; 14 15 src = fetchFromGitHub { 16 owner = "adamlwgriffiths"; 17 repo = "Pyrr"; 18 rev = "f6c8698c48a75f3fb7ad0d47d0ce80a04f87ba2f"; 19 hash = "sha256-u9O52MQskZRzw0rBH6uPdXdikWLJe7wyBZGNKIFA4BA="; 20 }; 21 22 propagatedBuildInputs = [ 23 multipledispatch 24 numpy 25 ]; 26 27 meta = with lib; { 28 description = "3D mathematical functions using NumPy"; 29 homepage = "https://github.com/adamlwgriffiths/Pyrr/"; 30 license = licenses.bsd2; 31 maintainers = with maintainers; [ c0deaddict ]; 32 }; 33}