Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyrr / default.nix
blob4f7eb66231951f76729b931aa107d352b9aea6a0
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , setuptools
5 , multipledispatch
6 , numpy
7 }:
9 buildPythonPackage rec {
10   pname = "pyrr";
11   version = "unstable-2022-07-22";
13   src = fetchFromGitHub {
14     owner = "adamlwgriffiths";
15     repo = "Pyrr";
16     rev = "f6c8698c48a75f3fb7ad0d47d0ce80a04f87ba2f";
17     hash = "sha256-u9O52MQskZRzw0rBH6uPdXdikWLJe7wyBZGNKIFA4BA=";
18   };
20   propagatedBuildInputs = [ multipledispatch numpy ];
22   meta = with lib; {
23     description = "3D mathematical functions using NumPy";
24     homepage = "https://github.com/adamlwgriffiths/Pyrr/";
25     license = licenses.bsd2;
26     maintainers = with maintainers; [ c0deaddict ];
27   };