about summary refs log tree commit diff
path: root/pkgs/development/python-modules/language-data/default.nix
blob: ff04b036dc05c7bbe63430dd81f8dc29122fe105 (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
44
45
46
{ lib
, buildPythonPackage
, fetchFromGitHub
, marisa-trie
, poetry-core
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "language-data";
  version = "1.0.1";
  format = "pyproject";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "rspeer";
    repo = "language_data";
    rev = "v${version}";
    sha256 = "51TUVHXPHG6ofbnxI6+o5lrtr+QCIpGKu+OjDK3l7Mc=";
  };

  nativeBuildInputs = [
    poetry-core
    setuptools
  ];

  propagatedBuildInputs = [
    marisa-trie
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [
    "language_data"
  ];

  meta = with lib; {
    description = "Supplement module for langcodes";
    homepage = "https://github.com/rspeer/language_data";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}