mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
python312Packages.aiozoneinfo: init at 0.1.0
Tools to fetch zoneinfo with asyncio https://github.com/bluetooth-devices/aiozoneinfo
This commit is contained in:
parent
059ccc9d1a
commit
da3499fee9
49
pkgs/development/python-modules/aiozoneinfo/default.nix
Normal file
49
pkgs/development/python-modules/aiozoneinfo/default.nix
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
poetry-core,
|
||||
pytest-asyncio,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
tzdata,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aiozoneinfo";
|
||||
version = "0.1.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bluetooth-devices";
|
||||
repo = "aiozoneinfo";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-gsU7dLLnV+KayfFcuhdcNZPk/XZHGhr6WXOQCIJvUHk=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace-fail "--cov=aiozoneinfo --cov-report=term-missing:skip-covered" ""
|
||||
'';
|
||||
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
dependencies = [ tzdata ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "aiozoneinfo" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tools to fetch zoneinfo with asyncio";
|
||||
homepage = "https://github.com/bluetooth-devices/aiozoneinfo";
|
||||
changelog = "https://github.com/bluetooth-devices/aiozoneinfo/blob/${version}/CHANGELOG.md";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -463,6 +463,8 @@ self: super: with self; {
|
||||
|
||||
aiozeroconf = callPackage ../development/python-modules/aiozeroconf { };
|
||||
|
||||
aiozoneinfo = callPackage ../development/python-modules/aiozoneinfo { };
|
||||
|
||||
airium = callPackage ../development/python-modules/airium { };
|
||||
|
||||
airly = callPackage ../development/python-modules/airly { };
|
||||
|
Loading…
Reference in New Issue
Block a user