3
0
Fork 0
forked from mirrors/nixpkgs

stups-cli-support: init at 1.1.20

This commit is contained in:
Maxim Schuwalow 2019-11-13 03:01:41 +01:00 committed by Lassulus
parent cd01834bf9
commit 9c951c80a6
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, clickclick
, dnspython
, requests
, pytest
, pytestcov
, isPy3k
}:
buildPythonPackage rec {
pname = "stups-cli-support";
version = "1.1.20";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "zalando-stups";
repo = "stups-cli-support";
rev = version;
sha256 = "1r6g29gd009p87m8a6wv4rzx7f0564zdv67qz5xys4wsgvc95bx0";
};
propagatedBuildInputs = [
clickclick
dnspython
requests
];
preCheck = "export HOME=$TEMPDIR";
checkInputs = [
pytest
pytestcov
];
meta = with lib; {
description = "Helper library for all STUPS command line tools.";
homepage = "https://github.com/zalando-stups/stups-cli-support";
license = licenses.asl20;
maintainers = [ maintainers.mschuwalow ];
};
}

View file

@ -1321,6 +1321,8 @@ in {
stumpy = callPackage ../development/python-modules/stumpy { };
stups-cli-support = callPackage ../development/python-modules/stups-cli-support { };
sumo = callPackage ../development/python-modules/sumo { };
supervise_api = callPackage ../development/python-modules/supervise_api { };