Merge pull request #221879 from ckiee/pyrr-unbork-bump-220722

pythonPackages.pyrr: 0.10.3 -> unstable-2022-07-22
This commit is contained in:
Sandro 2023-03-27 12:04:56 +02:00 committed by GitHub
commit af79cc0c5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,21 +1,22 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchFromGitHub
, setuptools , setuptools
, multipledispatch , multipledispatch
, numpy , numpy
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "0.10.3";
pname = "pyrr"; pname = "pyrr";
version = "unstable-2022-07-22";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "adamlwgriffiths";
sha256 = "3c0f7b20326e71f706a610d58f2190fff73af01eef60c19cb188b186f0ec7e1d"; repo = "Pyrr";
rev = "f6c8698c48a75f3fb7ad0d47d0ce80a04f87ba2f";
hash = "sha256-u9O52MQskZRzw0rBH6uPdXdikWLJe7wyBZGNKIFA4BA=";
}; };
buildInputs = [ setuptools ];
propagatedBuildInputs = [ multipledispatch numpy ]; propagatedBuildInputs = [ multipledispatch numpy ];
meta = with lib; { meta = with lib; {