summary refs log tree commit diff
path: root/pkgs/development/python-modules/click/default.nix
blob: ac96ef32618c90c648f73f077c995ea725146cdf (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
{ lib, buildPythonPackage, fetchPypi, locale, pytestCheckHook }:

buildPythonPackage rec {
  pname = "click";
  version = "7.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1k60i2fvxf8rxazlv04mnsmlsjrj5i5sda3x1ifhr0nqi7mb864a";
  };

  postPatch = ''
    substituteInPlace src/click/_unicodefun.py \
      --replace "'locale'" "'${locale}/bin/locale'"
  '';

  checkInputs = [ pytestCheckHook ];

  meta = with lib; {
    homepage = "https://click.palletsprojects.com/";
    description = "Create beautiful command line interfaces in Python";
    longDescription = ''
      A Python package for creating beautiful command line interfaces in a
      composable way, with as little code as necessary.
    '';
    license = licenses.bsd3;
  };
}