Merge pull request #326655 from Sigmanificient/pymee-init-2.2.0
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
aiohttp,
|
||||
websockets,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pymee";
|
||||
version = "2.2.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "FreshlyBrewedCode";
|
||||
repo = "pymee";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-4XKd0lZ6RAsG2zXjKMUeST6cNcg+SjT371gxLIhxkAA=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
dependencies = [
|
||||
aiohttp
|
||||
websockets
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pymee" ];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Python library to interact with homee";
|
||||
homepage = "https://github.com/FreshlyBrewedCode/pymee";
|
||||
changelog = "https://github.com/FreshlyBrewedCode/pymee/blob/${src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ sigmanificient ];
|
||||
};
|
||||
}
|
||||
@@ -11648,6 +11648,8 @@ self: super: with self; {
|
||||
|
||||
pymedio = callPackage ../development/python-modules/pymedio { };
|
||||
|
||||
pymee = callPackage ../development/python-modules/pymee { };
|
||||
|
||||
pymeeus = callPackage ../development/python-modules/pymeeus { };
|
||||
|
||||
pymelcloud = callPackage ../development/python-modules/pymelcloud { };
|
||||
|
||||
Reference in New Issue
Block a user