about summary refs log tree commit diff
path: root/pkgs/development/python-modules/normality/default.nix
blob: 862b3af9295852c7bf42fc30c1af2982bfd87e90 (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
37
38
39
40
41
42
43
{ lib
, fetchFromGitHub
, buildPythonPackage
, text-unidecode
, chardet
, banal
, pyicu
, pytestCheckHook
}:
buildPythonPackage rec {
  pname = "normality";
  version = "2.2.5";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "pudo";
    repo = "normality";
    rev = version;
    sha256 = "n8Ycm5DeFItmMJTolazZKGIyN7CTg2ajDCwi/UqzVe8=";
  };

  propagatedBuildInputs = [
    text-unidecode
    chardet
    banal
    pyicu
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "normality"
  ];

  meta = with lib; {
    description = "Micro-library to normalize text strings";
    homepage = "https://github.com/pudo/normality";
    license = licenses.mit;
    maintainers = [ ];
  };
}