lol

Merge pull request #278274 from fabaff/boschshcpy-bump

python311Packages.boschshcpy: 0.2.84 -> 0.2.88

authored by

Fabian Affolter and committed by
GitHub
75282ecf a898c8af

+11 -6
+11 -6
pkgs/development/python-modules/boschshcpy/default.nix
··· 5 5 , getmac 6 6 , pythonOlder 7 7 , requests 8 + , setuptools 8 9 , zeroconf 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "boschshcpy"; 13 - version = "0.2.84"; 14 - format = "setuptools"; 14 + version = "0.2.88"; 15 + pyproject = true; 15 16 16 - disabled = pythonOlder "3.7"; 17 + disabled = pythonOlder "3.10"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "tschamm"; 20 - repo = pname; 21 - rev = version; 22 - hash = "sha256-aSFnDLzJCZjHX6m/iZKC5F5kY7JXRZp0//jY8kkjC3I="; 21 + repo = "boschshcpy"; 22 + rev = "refs/tags/${version}"; 23 + hash = "sha256-tyx7VJGsU9YYNJQy1mly0AgwKULZ1BWeRzz1BDgXrUU="; 23 24 }; 25 + 26 + nativeBuildInputs = [ 27 + setuptools 28 + ]; 24 29 25 30 propagatedBuildInputs = [ 26 31 cryptography