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