nixpkgs/pkgs/development/python-modules/gios/default.nix
2023-03-05 23:23:07 +01:00

56 lines
1 KiB
Nix

{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, dacite
, fetchFromGitHub
, pytest-asyncio
, pytest-error-for-skips
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "gios";
version = "3.1.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "bieniu";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-7lOY8J42mRmIA18tQrmY3gNEQf6YqzbeULecrGhNwFc=";
};
propagatedBuildInputs = [
aiohttp
dacite
];
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytest-error-for-skips
pytestCheckHook
];
disabledTests = [
# Test requires network access
"test_invalid_station_id"
];
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 ];
};
}