12 buildPythonPackage rec {
13 pname = "rki-covid-parser";
17 disabled = pythonOlder "3.6";
19 src = fetchFromGitHub {
21 repo = "rki-covid-parser";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-e0MJjE4zgBPL+vt9EkgsdGrgqUyKK/1S9ZFxy56PUjc=";
30 propagatedBuildInputs = [
41 # Tests require netowrk access
42 "tests/test_districts.py"
43 "tests/test_endpoint_availibility.py"
46 pythonImportsCheck = [
51 description = "Python module for working with data from the Robert-Koch Institut";
52 homepage = "https://github.com/thebino/rki-covid-parser";
53 changelog = "https://github.com/thebino/rki-covid-parser/blob/v${version}/CHANGELOG.md";
54 license = with licenses; [ asl20 ];
55 maintainers = with maintainers; [ fab ];