python312Packages.pyrympro: init at 0.0.8

Module to interact with Read Your Meter Pro

https://github.com/OnFreund/pyrympro
This commit is contained in:
Fabian Affolter
2024-05-23 01:36:06 +02:00
parent d484aa8e20
commit c8842e4222
2 changed files with 41 additions and 0 deletions
@@ -0,0 +1,39 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pyrympro";
version = "0.0.8";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "OnFreund";
repo = "pyrympro";
rev = "refs/tags/v${version}";
hash = "sha256-mRvKLPgtBgmFDTHqra7GslxsgsJpQ2w/DE0Zgz5jujk=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "pyrympro" ];
meta = with lib; {
description = "Module to interact with Read Your Meter Pro";
homepage = "https://github.com/OnFreund/pyrympro";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -10024,6 +10024,8 @@ self: super: with self; {
pyrogram = callPackage ../development/python-modules/pyrogram { };
pyrympro = callPackage ../development/python-modules/pyrympro { };
pysabnzbd = callPackage ../development/python-modules/pysabnzbd { };
pysbd = callPackage ../development/python-modules/pysbd { };