Files
nixpkgs/pkgs/development/python-modules/kazoo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
519 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "kazoo";
version = "2.10.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-kFeWrk9MEr1OSukubl0BhDnmtWyM+7JIJTYuebIw2rE=";
};
# tests take a long time to run and leave threads hanging
doCheck = false;
meta = with lib; {
homepage = "https://kazoo.readthedocs.org";
description = "Higher Level Zookeeper Client";
license = licenses.asl20;
maintainers = [ ];
};
}