Merge pull request #220255 from dotlambda/fritzconnection-1.12.0

python310Packages.fritzconnection: 1.11.0 -> 1.12.0

authored by Robert Scott and committed by GitHub 643b9afc 5106aa20

+7 -3
+7 -3
pkgs/development/python-modules/fritzconnection/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "fritzconnection"; 11 - version = "1.11.0"; 11 + version = "1.12.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.6"; ··· 17 17 owner = "kbr"; 18 18 repo = pname; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-BHlOX5STnKaIOM5tiBZ9JHNQIYVZfIPDMuSw6DAJliA="; 20 + hash = "sha256-1giXmmyuy+qrY6xV3yZn4kcDd6w6l8uCL4ozcZE4N00="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ ··· 28 28 pytestCheckHook 29 29 ]; 30 30 31 + preCheck = '' 32 + export HOME=$TEMP 33 + ''; 34 + 31 35 pythonImportsCheck = [ 32 36 "fritzconnection" 33 37 ]; ··· 35 39 meta = with lib; { 36 40 description = "Python module to communicate with the AVM Fritz!Box"; 37 41 homepage = "https://github.com/kbr/fritzconnection"; 38 - changelog = "https://fritzconnection.readthedocs.io/en/${version}/sources/changes.html"; 42 + changelog = "https://fritzconnection.readthedocs.io/en/${version}/sources/version_history.html"; 39 43 license = licenses.mit; 40 44 maintainers = with maintainers; [ dotlambda valodim ]; 41 45 };