depot/third_party/nixpkgs/pkgs/development/python-modules/pyrr/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

27 lines
597 B
Nix

{ lib
, 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 lib; {
description = "3D mathematical functions using NumPy";
homepage = "https://github.com/adamlwgriffiths/Pyrr/";
license = licenses.bsd2;
maintainers = with maintainers; [ c0deaddict ];
};
}