5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
58 lines
985 B
Nix
58 lines
985 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 = [ ];
|
|
};
|
|
}
|