1
0
Fork 0

Package anycast_healthchecker

This commit is contained in:
clerie 2020-12-09 22:40:17 +01:00
parent fb42564cb0
commit 3b2b9b50f3
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ buildPythonPackage, fetchPypi, pbr, docopt, python-json-logger }:
buildPythonPackage rec {
pname = "anycast-healthchecker";
version = "0.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "1d555aa420113c9119f9f548eac35cb4789018b8866535a91f05086727146ea4";
};
buildInputs = [
pbr
];
propagatedBuildInputs = [
docopt python-json-logger
];
}