Files
nixpkgs/pkgs/development/python-modules/consolekit/default.nix
T
Florian Finkernagel d98f6da9f8 pythonPackages.whey, pythonPackages.whey-pth: init at 0.1.1
Whey and whey-pth is being used as a python build-backend by a number of packages
on Pypi.
2024-08-29 13:08:27 +02:00

43 lines
776 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
flit-core,
click,
colorama,
deprecation-alias,
domdf-python-tools,
mistletoe,
typing-extensions,
}:
buildPythonPackage rec {
pname = "consolekit";
version = "1.7.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Dqi84qeUGirw4z1ay3burLeHESeNK2DDPtPnpJzD/Qw=A";
};
build-system = [ flit-core ];
dependencies = [
click
colorama
deprecation-alias
domdf-python-tools
mistletoe
typing-extensions
];
nativeCheckInputs = [ ];
meta = {
description = "Additional utilities for click.";
homepage = "https://pypi.org/project/consolekit";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tyberius-prime ];
};
}