Merge pull request #266762 from r-ryantm/auto-update/python310Packages.pymetno

python310Packages.pymetno: 0.11.0 -> 0.12.0

authored by

Fabian Affolter and committed by
GitHub
5744e4ba c8880aaf

+6 -4
+6 -4
pkgs/development/python-modules/pymetno/default.nix
··· 3 3 , fetchFromGitHub 4 4 , aiohttp 5 5 , async-timeout 6 - , pytz 7 6 , xmltodict 7 + , pythonOlder 8 8 }: 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pymetno"; 12 - version = "0.11.0"; 12 + version = "0.12.0"; 13 13 format = "setuptools"; 14 14 15 + disabled = pythonOlder "3.7"; 16 + 15 17 src = fetchFromGitHub { 16 18 owner = "Danielhiversen"; 17 19 repo = "PyMetno"; 18 20 rev = "refs/tags/${version}"; 19 - hash = "sha256-NikfHQwVviCKWGfY1atirFVaqWQHfXg8WAgZIDnGn4Q="; 21 + hash = "sha256-wRSUIaonjjucLM+A4GsF9Lrq2vZYCquEvblbmjKYpQE="; 20 22 }; 21 23 22 24 propagatedBuildInputs = [ 23 25 aiohttp 24 26 async-timeout 25 - pytz 26 27 xmltodict 27 28 ]; 28 29 ··· 36 37 meta = with lib; { 37 38 description = "A library to communicate with the met.no API"; 38 39 homepage = "https://github.com/Danielhiversen/pyMetno/"; 40 + changelog = "https://github.com/Danielhiversen/pyMetno/releases/tag/${version}"; 39 41 license = licenses.mit; 40 42 maintainers = with maintainers; [ flyfloh ]; 41 43 };