mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ lib
|
|
, pythonPackages
|
|
, fetchFromGitHub
|
|
, nixosTests
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "patroni";
|
|
version = "3.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zalando";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-GyPPBoYcJnuMer9FYGhWqursX/qJLaAlc9zFULoJqo4=";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
boto3
|
|
click
|
|
consul
|
|
dnspython
|
|
kazoo
|
|
kubernetes
|
|
prettytable
|
|
psutil
|
|
psycopg2
|
|
pysyncobj
|
|
python-dateutil
|
|
python-etcd
|
|
pyyaml
|
|
tzlocal
|
|
urllib3
|
|
ydiff
|
|
];
|
|
|
|
nativeCheckInputs = with pythonPackages; [
|
|
flake8
|
|
mock
|
|
pytestCheckHook
|
|
pytest-cov
|
|
requests
|
|
];
|
|
|
|
# Fix tests by preventing them from writing to /homeless-shelter.
|
|
preCheck = "export HOME=$(mktemp -d)";
|
|
|
|
pythonImportsCheck = [ "patroni" ];
|
|
|
|
passthru.tests = {
|
|
patroni = nixosTests.patroni;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://patroni.readthedocs.io/en/latest/";
|
|
description = "Template for PostgreSQL HA with ZooKeeper, etcd or Consul";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = teams.deshaw.members;
|
|
};
|
|
}
|