12 buildPythonPackage rec {
13 pname = "aiozoneinfo";
17 disabled = pythonOlder "3.9";
19 src = fetchFromGitHub {
20 owner = "bluetooth-devices";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-u7yQiy5xKK1A19cmpXjA4MMK4q7RvtuvwkUECnddzG8=";
27 substituteInPlace pyproject.toml \
28 --replace-fail "--cov=aiozoneinfo --cov-report=term-missing:skip-covered" ""
31 build-system = [ poetry-core ];
33 dependencies = [ tzdata ];
40 pythonImportsCheck = [ "aiozoneinfo" ];
43 description = "Tools to fetch zoneinfo with asyncio";
44 homepage = "https://github.com/bluetooth-devices/aiozoneinfo";
45 changelog = "https://github.com/bluetooth-devices/aiozoneinfo/blob/${version}/CHANGELOG.md";
46 license = licenses.asl20;
47 maintainers = with maintainers; [ fab ];