lol

python312Packages.homeconnect: 0.7.4 -> 0.8.0

Changelog: https://github.com/DavidMStraub/homeconnect/releases/tag/v0.8.0

+6 -8
+6 -8
pkgs/development/python-modules/homeconnect/default.nix
··· 6 6 requests-oauthlib, 7 7 pythonOlder, 8 8 setuptools, 9 - six, 10 9 }: 11 10 12 11 buildPythonPackage rec { 13 12 pname = "homeconnect"; 14 - version = "0.7.4"; 15 - format = "pyproject"; 13 + version = "0.8.0"; 14 + pyproject = true; 16 15 17 16 disabled = pythonOlder "3.7"; 18 17 19 18 src = fetchPypi { 20 19 inherit pname version; 21 - hash = "sha256-lkal6Dy4cRRZ893I3/jyQ3+sDZMrHN0UMGff0ab4pvk="; 20 + hash = "sha256-W475a+TlGiKRR1EDYiFVmApmQfmft85iBQLRnbEmcuA="; 22 21 }; 23 22 24 - nativeBuildInputs = [ setuptools ]; 23 + build-system = [ setuptools ]; 25 24 26 - propagatedBuildInputs = [ 25 + dependencies = [ 27 26 requests 28 27 requests-oauthlib 29 - six 30 28 ]; 31 29 32 30 # Project has no tests ··· 38 36 description = "Python client for the BSH Home Connect REST API"; 39 37 homepage = "https://github.com/DavidMStraub/homeconnect"; 40 38 changelog = "https://github.com/DavidMStraub/homeconnect/releases/tag/v${version}"; 41 - license = with licenses; [ mit ]; 39 + license = licenses.mit; 42 40 maintainers = with maintainers; [ fab ]; 43 41 }; 44 42 }