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