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

pythonPackages.pyrr: 0.10.3 -> unstable-2022-07-22

authored by Sandro and committed by GitHub af79cc0c d155dacb

+7 -6
+7 -6
pkgs/development/python-modules/pyrr/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 3 + , fetchFromGitHub 4 4 , setuptools 5 5 , multipledispatch 6 6 , numpy 7 7 }: 8 8 9 9 buildPythonPackage rec { 10 - version = "0.10.3"; 11 10 pname = "pyrr"; 11 + version = "unstable-2022-07-22"; 12 12 13 - src = fetchPypi { 14 - inherit pname version; 15 - sha256 = "3c0f7b20326e71f706a610d58f2190fff73af01eef60c19cb188b186f0ec7e1d"; 13 + src = fetchFromGitHub { 14 + owner = "adamlwgriffiths"; 15 + repo = "Pyrr"; 16 + rev = "f6c8698c48a75f3fb7ad0d47d0ce80a04f87ba2f"; 17 + hash = "sha256-u9O52MQskZRzw0rBH6uPdXdikWLJe7wyBZGNKIFA4BA="; 16 18 }; 17 19 18 - buildInputs = [ setuptools ]; 19 20 propagatedBuildInputs = [ multipledispatch numpy ]; 20 21 21 22 meta = with lib; {