about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyrr/default.nix
blob: 10e9781b3ab13d19ebc1a61e8051694736993d73 (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.2";
  pname = "pyrr";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1q9i4qa6ygr8hlpnw55s58naynxzwm0sc1m54wyy1ghbf8m8d2f0";
  };

  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 ];
  };
}