My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/stups-pierone/default.nix

53 lines
950 B

{ 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
'';
checkInputs = [
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 ];
};
}