depot/third_party/nixpkgs/pkgs/development/python-modules/etcd3/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

58 lines
1,003 B
Nix

{
lib,
buildPythonPackage,
etcd,
fetchFromGitHub,
grpcio,
hypothesis,
mock,
pifpaf,
protobuf,
pytestCheckHook,
six,
tenacity,
}:
buildPythonPackage rec {
pname = "etcd3";
version = "0.12.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "kragniz";
repo = "python-etcd3";
rev = "refs/tags/v${version}";
hash = "sha256-YM72+fkCDYXl6DORJa/O0sqXqHDWQcFLv2ifQ9kEHBo=";
};
propagatedBuildInputs = [
grpcio
protobuf
six
tenacity
];
# various failures and incompatible with newer hypothesis versions
doCheck = false;
nativeCheckInputs = [
etcd
hypothesis
mock
pifpaf
pytestCheckHook
];
preCheck = ''
pifpaf -e PYTHON run etcd --cluster
'';
pythonImportsCheck = [ "etcd3" ];
meta = with lib; {
description = "Python client for the etcd API v3";
homepage = "https://github.com/kragniz/python-etcd3";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}