summary refs log tree commit diff
path: root/pkgs/development/python-modules/click/default.nix
blob: abf1ea58c8f172a6f94c5cc83c1abf0f29f8c75d (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
29
30
31
32
33
34
35
36
{ lib, buildPythonPackage, fetchPypi, locale, pytest }:

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

  src = fetchPypi {
    pname = "Click";
    inherit version;
    sha256 = "5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7";
  };

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

  buildInputs = [ pytest ];

  checkPhase = ''
    py.test tests
  '';

  # https://github.com/pallets/click/issues/823
  doCheck = false;

  meta = with lib; {
    homepage = "http://click.pocoo.org/";
    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;
  };
}