Files
nixpkgs/pkgs/development/python-modules/consolekit/default.nix
Fabian Affolter 26b83d4b38 python3Packages.consolekit: 1.12.0 -> 1.13.0
https://github.com/domdfcoding/consolekit/releases/tag/v1.13.0

This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:16 +02:00

50 lines
954 B
Nix

{
lib,
buildPythonPackage,
click,
colorama,
deprecation-alias,
domdf-python-tools,
fetchPypi,
flit-core,
mistletoe,
psutil,
typing-extensions,
}:
buildPythonPackage rec {
pname = "consolekit";
version = "1.13.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-bCjfKE7Ib7OV++OUk935+N/IsYGmFWq/1Qw/IVatKyA=";
};
build-system = [ flit-core ];
dependencies = [
click
colorama
deprecation-alias
domdf-python-tools
mistletoe
typing-extensions
];
optional-dependencies = {
terminals = [ psutil ];
};
pythonImportsCheck = [ "consolekit" ];
meta = {
description = "Additional utilities for click";
homepage = "https://github.com/domdfcoding/consolekit";
changelog = "https://github.com/domdfcoding/consolekit/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tyberius-prime ];
};
}