mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
python311Packages.pytedee-async: init at 0.2.10
Module to interact with Tedee locks https://github.com/zweckj/pytedee_async
This commit is contained in:
parent
868769dc6c
commit
046df5a4ca
45
pkgs/development/python-modules/pytedee-async/default.nix
Normal file
45
pkgs/development/python-modules/pytedee-async/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, pythonOlder
|
||||
, aiohttp
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytedee-async";
|
||||
version = "0.2.10";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zweckj";
|
||||
repo = "pytedee_async";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-dOoADOSDb4FDJNhPgUpD/GTBj5IR33qKtjJZoiMmk6E=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -11343,6 +11343,8 @@ self: super: with self; {
|
||||
|
||||
pyte = callPackage ../development/python-modules/pyte { };
|
||||
|
||||
pytedee-async = callPackage ../development/python-modules/pytedee-async { };
|
||||
|
||||
pytenable = callPackage ../development/python-modules/pytenable { };
|
||||
|
||||
pytensor = callPackage ../development/python-modules/pytensor { };
|
||||
|
Loading…
Reference in New Issue
Block a user