3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #207000 from fabaff/gios-bump

python310Packages.gios: 2.1.0 -> 2.3.0
This commit is contained in:
Fabian Affolter 2022-12-21 08:16:19 +01:00 committed by GitHub
commit c4589ee5c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,8 @@
buildPythonPackage rec {
pname = "gios";
version = "2.1.0";
version = "2.3.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-/lAENP9wKZ+h2Iq2e9S7s7Naa0CTl/I2cwCxBEAwsrA=";
};
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 ];
};