about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyrr/default.nix
blob: b84d1a67f1d8dd8da2756ea9190d920927b6e943 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, multipledispatch
, numpy
}:

buildPythonPackage rec {
  pname = "pyrr";
  version = "unstable-2022-07-22";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "adamlwgriffiths";
    repo = "Pyrr";
    rev = "f6c8698c48a75f3fb7ad0d47d0ce80a04f87ba2f";
    hash = "sha256-u9O52MQskZRzw0rBH6uPdXdikWLJe7wyBZGNKIFA4BA=";
  };

  propagatedBuildInputs = [ multipledispatch numpy ];

  meta = with lib; {
    description = "3D mathematical functions using NumPy";
    homepage = "https://github.com/adamlwgriffiths/Pyrr/";
    license = licenses.bsd2;
    maintainers = with maintainers; [ c0deaddict ];
  };
}