stups-pierone: init at 1.1.45
This commit is contained in:
parent
c2997409d3
commit
1979ac619f
47
pkgs/development/python-modules/stups-pierone/default.nix
Normal file
47
pkgs/development/python-modules/stups-pierone/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1392,6 +1392,8 @@ in {
|
|||||||
|
|
||||||
stups-fullstop = callPackage ../development/python-modules/stups-fullstop { };
|
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-tokens = callPackage ../development/python-modules/stups-tokens { };
|
||||||
|
|
||||||
stups-zign = callPackage ../development/python-modules/stups-zign { };
|
stups-zign = callPackage ../development/python-modules/stups-zign { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user