python310Packages.lakeside: init at 0.13
This commit is contained in:
parent
bcc8fc477a
commit
0b8ea61752
2 changed files with 46 additions and 0 deletions
44
pkgs/development/python-modules/lakeside/default.nix
Normal file
44
pkgs/development/python-modules/lakeside/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, protobuf
|
||||
, pycryptodome
|
||||
, pythonOlder
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "lakeside";
|
||||
version = "0.13";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nkgilley";
|
||||
repo = "python-lakeside";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-Y5g78trkwOF3jsbgTv0uVkvfB1HZN+w1T6xIorxGAhg=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
protobuf
|
||||
pycryptodome
|
||||
requests
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"lakeside"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for controlling LED bulbs from Eufy";
|
||||
homepage = "https://github.com/nkgilley/python-lakeside";
|
||||
changelog = "https://github.com/nkgilley/python-lakeside/releases/tag/${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -5372,6 +5372,8 @@ self: super: with self; {
|
|||
|
||||
labmath = callPackage ../development/python-modules/labmath { };
|
||||
|
||||
lakeside = callPackage ../development/python-modules/lakeside { };
|
||||
|
||||
langcodes = callPackage ../development/python-modules/langcodes { };
|
||||
|
||||
langdetect = callPackage ../development/python-modules/langdetect { };
|
||||
|
|
Loading…
Reference in a new issue