python310Packages.gios: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-20 14:11:57 +01:00
parent e4599c2a03
commit bf0a4f5442

View File

@ -13,6 +13,7 @@
buildPythonPackage rec {
pname = "gios";
version = "2.1.0";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -20,7 +21,7 @@ buildPythonPackage rec {
owner = "bieniu";
repo = pname;
rev = version;
sha256 = "sha256-WjuDsu0EA+KtErusw5VADyvleVegXHCTEkuQ1lU/SRU=";
hash = "sha256-WjuDsu0EA+KtErusw5VADyvleVegXHCTEkuQ1lU/SRU=";
};
propagatedBuildInputs = [
@ -47,11 +48,14 @@ buildPythonPackage rec {
"test_invalid_station_id"
];
pythonImportsCheck = [ "gios" ];
pythonImportsCheck = [
"gios"
];
meta = with lib; {
description = "Python client for getting air quality data from GIOS";
homepage = "https://github.com/bieniu/gios";
changelog = "https://github.com/bieniu/gios/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};