nixpkgs/pkgs/development/python-modules/lmcloud/default.nix
2024-04-05 16:34:25 +02:00

49 lines
912 B
Nix

{
lib,
authlib,
bleak,
buildPythonPackage,
fetchFromGitHub,
httpx,
pythonOlder,
setuptools,
websockets,
}:
buildPythonPackage rec {
pname = "lmcloud";
version = "1.1.9";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "zweckj";
repo = "lmcloud";
rev = "refs/tags/v${version}";
hash = "sha256-0+UDSg57E/VvAU9pDZJ4LZYRY5TUlCgdPwVh5Nhohl4=";
};
build-system = [ setuptools ];
dependencies = [
authlib
bleak
httpx
websockets
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "lmcloud" ];
meta = with lib; {
description = "Library to interface with La Marzocco's cloud";
homepage = "https://github.com/zweckj/lmcloud";
changelog = "https://github.com/zweckj/lmcloud/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}