Files
nixpkgs/pkgs/development/python-modules/wolf-comm/default.nix
2025-03-27 03:52:35 +00:00

48 lines
887 B
Nix

{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
httpx,
lib,
lxml,
pkce,
setuptools,
shortuuid,
}:
buildPythonPackage rec {
pname = "wolf-comm";
version = "0.0.47";
pyproject = true;
src = fetchFromGitHub {
owner = "janrothkegel";
repo = "wolf-comm";
tag = version;
hash = "sha256-/34smUrsWKNEd5OPPIsDnW3zfq6nhKX3Yp+UBk+Nibw=";
};
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 ];
};
}