ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / cld2-cffi / default.nix
blobfc5a6b0e54bc25ba2eeabf2303c70762d54f2ed2
1 { lib, stdenv, buildPythonPackage, fetchPypi, six, cffi, nose }:
3 buildPythonPackage rec {
4   pname = "cld2-cffi";
5   version = "0.1.4";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0rvcdx4fdh5yk4d2nlddq1q1r2r0xqp86hpmbdn447pdcj1r8a9s";
10   };
12   propagatedBuildInputs = [ six cffi ];
13   checkInputs = [ nose ];
15   # gcc doesn't approve of this code, so disable -Werror
16   NIX_CFLAGS_COMPILE = "-w" + lib.optionalString stdenv.cc.isClang " -Wno-error=c++11-narrowing";
18   checkPhase = "nosetests -v";
20   meta = with lib; {
21     description = "CFFI bindings around Google Chromium's embedded compact language detection library (CLD2)";
22     homepage = "https://github.com/GregBowyer/cld2-cffi";
23     license = licenses.asl20;
24     maintainers = with maintainers; [ rvl ];
25   };