mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
cloudsmith-cli: add changelog to meta
This commit is contained in:
parent
5e15602e74
commit
ff1a3cb51c
@ -1,17 +1,16 @@
|
||||
{ python3
|
||||
, lib
|
||||
{ lib
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "cloudsmith-cli";
|
||||
version = "0.32.0";
|
||||
|
||||
format = "wheel";
|
||||
|
||||
src = python3.pkgs.fetchPypi {
|
||||
pname = "cloudsmith_cli";
|
||||
inherit format version;
|
||||
sha256 = "ZETVtRlzd9KUOeDyAH0MnnIy1WtGLVBm+bActUM4zBw=";
|
||||
hash = "sha256-ZETVtRlzd9KUOeDyAH0MnnIy1WtGLVBm+bActUM4zBw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
@ -33,11 +32,16 @@ python3.pkgs.buildPythonApplication rec {
|
||||
# Wheels have no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
pythonImportsCheck = [
|
||||
"cloudsmith_cli"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
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;
|
||||
changelog = "https://github.com/cloudsmith-io/cloudsmith-cli/blob/v${version}/CHANGELOG.md";
|
||||
maintainers = with maintainers; [ jtojnar ];
|
||||
license = licenses.asl20;
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user