summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyrr/default.nix
blob: fba7a0b27dd9030406148760fe657f929788e30f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchPypi
, setuptools, multipledispatch, numpy }:

buildPythonPackage rec {
  version = "0.7.2";
  pname = "pyrr";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "04a65a9fb5c746b41209f55b21abf47a0ef80a4271159d670ca9579d9be3b4fa";
  };

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

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