cloudsmith-cli: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-01-24 17:53:48 +01:00
parent 5e15602e74
commit ff1a3cb51c

View File

@ -1,17 +1,16 @@
{ python3 { lib
, lib , python3
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "cloudsmith-cli"; pname = "cloudsmith-cli";
version = "0.32.0"; version = "0.32.0";
format = "wheel"; format = "wheel";
src = python3.pkgs.fetchPypi { src = python3.pkgs.fetchPypi {
pname = "cloudsmith_cli"; pname = "cloudsmith_cli";
inherit format version; inherit format version;
sha256 = "ZETVtRlzd9KUOeDyAH0MnnIy1WtGLVBm+bActUM4zBw="; hash = "sha256-ZETVtRlzd9KUOeDyAH0MnnIy1WtGLVBm+bActUM4zBw=";
}; };
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
@ -33,11 +32,16 @@ python3.pkgs.buildPythonApplication rec {
# Wheels have no tests # Wheels have no tests
doCheck = false; doCheck = false;
meta = { pythonImportsCheck = [
"cloudsmith_cli"
];
meta = with lib; {
homepage = "https://help.cloudsmith.io/docs/cli/"; homepage = "https://help.cloudsmith.io/docs/cli/";
description = "Cloudsmith Command Line Interface"; description = "Cloudsmith Command Line Interface";
maintainers = with lib.maintainers; [ jtojnar ]; changelog = "https://github.com/cloudsmith-io/cloudsmith-cli/blob/v${version}/CHANGELOG.md";
license = lib.licenses.asl20; maintainers = with maintainers; [ jtojnar ];
platforms = with lib.platforms; unix; license = licenses.asl20;
platforms = with platforms; unix;
}; };
} }