depot/third_party/nixpkgs/pkgs/development/python-modules/pyrr/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

33 lines
695 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
multipledispatch,
numpy,
}:
buildPythonPackage rec {
pname = "pyrr";
version = "unstable-2022-07-22";
format = "setuptools";
src = fetchFromGitHub {
owner = "adamlwgriffiths";
repo = "Pyrr";
rev = "f6c8698c48a75f3fb7ad0d47d0ce80a04f87ba2f";
hash = "sha256-u9O52MQskZRzw0rBH6uPdXdikWLJe7wyBZGNKIFA4BA=";
};
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 ];
};
}