Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
647 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
click,
pytest,
setuptools,
}:
buildPythonPackage rec {
pname = "click-plugins";
version = "1.1.1.2";
pyproject = true;
src = fetchPypi {
pname = "click_plugins";
inherit version;
sha256 = "sha256-1685hKmdJDwTGqGoKDMedjD0qIqXQf0FySeyBLz5ImE=";
};
build-system = [ setuptools ];
dependencies = [ click ];
nativeCheckInputs = [ pytest ];
meta = with lib; {
description = "Extension module for click to enable registering CLI commands";
homepage = "https://github.com/click-contrib/click-plugins";
license = licenses.bsd3;
maintainers = [ ];
};
}