lol

python312Packages.env-canada: 0.8.0 -> 0.10.1 (#399126)

authored by

Fabian Affolter and committed by
GitHub
8dbbb9c0 b8989bba

+4 -4
+4 -4
pkgs/development/python-modules/env-canada/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "env-canada"; 21 - version = "0.8.0"; 21 + version = "0.10.1"; 22 22 pyproject = true; 23 23 24 - disabled = pythonOlder "3.10"; 24 + disabled = pythonOlder "3.11"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "michaeldavie"; 28 28 repo = "env_canada"; 29 - tag = "v${version}"; 29 + tag = version; 30 30 hash = "sha256-4PztYdQmMH2n3dlV8arJ2UFGp08nkIK80L460UdNhV8="; 31 31 }; 32 32 ··· 66 66 description = "Python library to get Environment Canada weather data"; 67 67 homepage = "https://github.com/michaeldavie/env_canada"; 68 68 changelog = "https://github.com/michaeldavie/env_canada/blob/v${version}/CHANGELOG.md"; 69 - license = with licenses; [ mit ]; 69 + license = licenses.mit; 70 70 maintainers = with maintainers; [ fab ]; 71 71 }; 72 72 }