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 {
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;
};
}