ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyrr / default.nix
blobcb1da5238681ac8012c059bf4263c3a58effe26e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , multipledispatch
6 , numpy
7 }:
9 buildPythonPackage rec {
10   version = "0.10.3";
11   pname = "pyrr";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "3c0f7b20326e71f706a610d58f2190fff73af01eef60c19cb188b186f0ec7e1d";
16   };
18   buildInputs = [ setuptools ];
19   propagatedBuildInputs = [ multipledispatch numpy ];
21   meta = with lib; {
22     description = "3D mathematical functions using NumPy";
23     homepage = "https://github.com/adamlwgriffiths/Pyrr/";
24     license = licenses.bsd2;
25     maintainers = with maintainers; [ c0deaddict ];
26   };