17 buildPythonPackage rec {
18 pname = "pyoutbreaksnearme";
19 version = "2023.12.0";
22 disabled = pythonOlder "3.10";
24 src = fetchFromGitHub {
26 repo = "pyoutbreaksnearme";
27 rev = "refs/tags/${version}";
28 hash = "sha256-oR/DApOxNSSczrBeH4sytd/vasbD4rA1poW4zNoeAnU=";
31 nativeBuildInputs = [ poetry-core ];
33 propagatedBuildInputs = [
40 __darwinAllowLocalNetworking = true;
50 # Ignore the examples directory as the files are prefixed with test_.
54 pythonImportsCheck = [ "pyoutbreaksnearme" ];
57 description = "Library for retrieving data from for Outbreaks Near Me";
58 homepage = "https://github.com/bachya/pyoutbreaksnearme";
59 changelog = "https://github.com/bachya/pyoutbreaksnearme/releases/tag/${version}";
60 license = with licenses; [ mit ];
61 maintainers = with maintainers; [ fab ];