about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/click-plugins/default.nix
blob: a5124ac861343290407825e0377ad054b894afe1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, buildPythonPackage, fetchPypi,
  click, pytest
}:

buildPythonPackage rec {
  pname = "click-plugins";
  version = "1.0.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "dfed74b5063546a137de99baaaf742b4de4337ad2b3e1df5ec7c8a256adc0847";
  };

  propagatedBuildInputs = [
    click
  ];

  checkInputs = [
    pytest
  ];

  meta = with stdenv.lib; {
    description = "An extension module for click to enable registering CLI commands";
    homepage = https://github.com/click-contrib/click-plugins;
    license = licenses.bsd3;
    maintainers = with maintainers; [ knedlsepp ];
  };
}