fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
52 lines
962 B
Nix
52 lines
962 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
requests,
|
|
stups-cli-support,
|
|
stups-zign,
|
|
pytest,
|
|
pytest-cov,
|
|
hypothesis,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "stups-pierone";
|
|
version = "1.1.51";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zalando-stups";
|
|
repo = "pierone-cli";
|
|
rev = version;
|
|
hash = "sha256-OypGYHfiFUfcUndylM2N2WfPnfXXJ4gvWypUbltYAYE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
stups-cli-support
|
|
stups-zign
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TEMPDIR
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytest
|
|
pytest-cov
|
|
hypothesis
|
|
];
|
|
|
|
pythonImportsCheck = [ "pierone" ];
|
|
|
|
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 = with maintainers; [ mschuwalow ];
|
|
};
|
|
}
|