13 buildPythonPackage rec {
14 pname = "rki-covid-parser";
18 disabled = pythonOlder "3.6";
20 src = fetchFromGitHub {
22 repo = "rki-covid-parser";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-e0MJjE4zgBPL+vt9EkgsdGrgqUyKK/1S9ZFxy56PUjc=";
27 nativeBuildInputs = [ setuptools ];
29 propagatedBuildInputs = [ aiohttp ];
38 # Tests require netowrk access
39 "tests/test_districts.py"
40 "tests/test_endpoint_availibility.py"
43 pythonImportsCheck = [ "rki_covid_parser" ];
46 description = "Python module for working with data from the Robert-Koch Institut";
47 homepage = "https://github.com/thebino/rki-covid-parser";
48 changelog = "https://github.com/thebino/rki-covid-parser/blob/v${version}/CHANGELOG.md";
49 license = with licenses; [ asl20 ];
50 maintainers = with maintainers; [ fab ];