summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyrr/default.nix
blob: 3380cf1205c3e71055ef370b01c80527b8e5ec6f (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
{ stdenv
, buildPythonPackage
, fetchPypi
, setuptools
, multipledispatch
, numpy
}:

buildPythonPackage rec {
  version = "0.10.3";
  pname = "pyrr";

  src = fetchPypi {
    inherit pname version;
    sha256 = "3c0f7b20326e71f706a610d58f2190fff73af01eef60c19cb188b186f0ec7e1d";
  };

  buildInputs = [ setuptools ];
  propagatedBuildInputs = [ multipledispatch numpy ];

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