Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sacremoses / default.nix
blobc08589b66e2569fe86f9f5d959efb4043ececfec
1 { buildPythonPackage
2 , lib
3 , fetchFromGitHub
4 , click
5 , six
6 , tqdm
7 , joblib
8 , pytest
9 }:
11 buildPythonPackage rec {
12   pname = "sacremoses";
13   version = "0.0.35";
14   format = "setuptools";
16   src = fetchFromGitHub {
17     owner = "alvations";
18     repo = pname;
19     rev = version;
20     sha256 = "1gzr56w8yx82mn08wax5m0xyg15ym4ri5l80gmagp8r53443j770";
21   };
23   propagatedBuildInputs = [ click six tqdm joblib ];
25   nativeCheckInputs = [ pytest ];
26   # ignore tests which call to remote host
27   checkPhase = ''
28     pytest -k 'not truecase'
29   '';
31   meta = with lib; {
32     homepage = "https://github.com/alvations/sacremoses";
33     description = "Python port of Moses tokenizer, truecaser and normalizer";
34     mainProgram = "sacremoses";
35     license = licenses.lgpl21Plus;
36     platforms = platforms.unix;
37     maintainers = with maintainers; [ pashashocky ];
38   };