mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
30 lines
677 B
Nix
30 lines
677 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 ];
|
|
};
|
|
}
|