forked from mirrors/nixpkgs
cloudsmith-cli: init at 0.26.0
This commit is contained in:
parent
d26d771381
commit
1818ef1785
43
pkgs/development/tools/cloudsmith-cli/default.nix
Normal file
43
pkgs/development/tools/cloudsmith-cli/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ python3
|
||||
, lib
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "cloudsmith-cli";
|
||||
version = "0.26.0";
|
||||
|
||||
format = "wheel";
|
||||
|
||||
src = python3.pkgs.fetchPypi {
|
||||
pname = "cloudsmith_cli";
|
||||
inherit format version;
|
||||
sha256 = "c2W5+z+X4oRZxlNhB6for4mN4NeBX9MtEtmXhU5sz4A=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
click
|
||||
click-configfile
|
||||
click-didyoumean
|
||||
click-spinner
|
||||
cloudsmith-api
|
||||
colorama
|
||||
future
|
||||
requests
|
||||
requests_toolbelt
|
||||
semver
|
||||
simplejson
|
||||
six
|
||||
setuptools # needs pkg_resources
|
||||
];
|
||||
|
||||
# Wheels have no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://help.cloudsmith.io/docs/cli/";
|
||||
description = "Cloudsmith Command Line Interface";
|
||||
maintainers = with lib.maintainers; [ jtojnar ];
|
||||
license = lib.licenses.asl20;
|
||||
platforms = with lib.platforms; unix;
|
||||
};
|
||||
}
|
|
@ -1260,6 +1260,8 @@ in
|
|||
|
||||
cloud-sql-proxy = callPackage ../tools/misc/cloud-sql-proxy { };
|
||||
|
||||
cloudsmith-cli = callPackage ../development/tools/cloudsmith-cli { };
|
||||
|
||||
codeql = callPackage ../development/tools/analysis/codeql { };
|
||||
|
||||
container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { };
|
||||
|
|
Loading…
Reference in a new issue