stups-pierone: init at 1.1.45

This commit is contained in:
Maxim Schuwalow 2020-01-12 03:11:56 +01:00 committed by Jon
parent c2997409d3
commit 1979ac619f
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, requests
, stups-cli-support
, stups-zign
, pytest
, pytestcov
, hypothesis
, isPy3k
}:
buildPythonPackage rec {
pname = "stups-pierone";
version = "1.1.45";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "zalando-stups";
repo = "pierone-cli";
rev = version;
sha256 = "1ggfizw27wpcagbbk15xpfrhq6b250cx4278b5d7y8s438g128cs";
};
propagatedBuildInputs = [
requests
stups-cli-support
stups-zign
];
preCheck = "
export HOME=$TEMPDIR
";
checkInputs = [
pytest
pytestcov
hypothesis
];
meta = with lib; {
description = "Convenient command line client for STUPS' Pier One Docker registry";
homepage = "https://github.com/zalando-stups/pierone-cli";
license = licenses.asl20;
maintainers = [ maintainers.mschuwalow ];
};
}

View file

@ -1392,6 +1392,8 @@ in {
stups-fullstop = callPackage ../development/python-modules/stups-fullstop { };
stups-pierone = callPackage ../development/python-modules/stups-pierone { };
stups-tokens = callPackage ../development/python-modules/stups-tokens { };
stups-zign = callPackage ../development/python-modules/stups-zign { };