python313Packages.wolf-comm: init at 0.0.19

This commit is contained in:
Robert Schütz
2025-01-09 08:03:13 -08:00
parent e82788ee87
commit 83d9e485ee
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,47 @@
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
httpx,
lib,
lxml,
pkce,
setuptools,
shortuuid,
}:
buildPythonPackage rec {
pname = "wolf-comm";
version = "0.0.19";
pyproject = true;
src = fetchFromGitHub {
owner = "janrothkegel";
repo = "wolf-comm";
tag = version;
hash = "sha256-majkiDGyR6qHMi6VmlopWAJK7rXPPR5TeAw6gPjiCw8=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
httpx
lxml
pkce
shortuuid
];
pythonImportsCheck = [ "wolf_comm" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/janrothkegel/wolf-comm/releases/tag/${src.tag}";
description = "Communicate with Wolf SmartSet Cloud";
homepage = "https://github.com/janrothkegel/wolf-comm";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -18100,6 +18100,8 @@ self: super: with self; {
wn = callPackage ../development/python-modules/wn { };
wolf-comm = callPackage ../development/python-modules/wolf-comm { };
woob = callPackage ../development/python-modules/woob { };
woodblock = callPackage ../development/python-modules/woodblock { };