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