depot/third_party/nixpkgs/pkgs/development/python-modules/pytedee-async/default.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

45 lines
883 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pythonOlder
, aiohttp
}:
buildPythonPackage rec {
pname = "pytedee-async";
version = "0.2.11";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "zweckj";
repo = "pytedee_async";
rev = "refs/tags/v${version}";
hash = "sha256-mBTY2JU79Hk6P+oWQ+2FD0BYHL1c865EvnTUl6H+gnk=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
aiohttp
];
pythonImportsCheck = [
"pytedee_async"
];
# Module has no tests
doCheck = false;
meta = with lib; {
description = "Module to interact with Tedee locks";
homepage = "https://github.com/zweckj/pytedee_async";
changelog = "https://github.com/zweckj/pytedee_async/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}