2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, six, cffi, nose }:
|
2017-09-15 06:32:37 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cld2-cffi";
|
|
|
|
version = "0.1.4";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0rvcdx4fdh5yk4d2nlddq1q1r2r0xqp86hpmbdn447pdcj1r8a9s";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six cffi ];
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
|
|
|
|
# gcc doesn't approve of this code, so disable -Werror
|
2019-11-04 12:33:53 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-w" + stdenv.lib.optionalString stdenv.cc.isClang " -Wno-error=c++11-narrowing";
|
2017-09-15 06:32:37 +01:00
|
|
|
|
|
|
|
checkPhase = "nosetests -v";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-15 06:32:37 +01:00
|
|
|
description = "CFFI bindings around Google Chromium's embedded compact language detection library (CLD2)";
|
|
|
|
homepage = "https://github.com/GregBowyer/cld2-cffi";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ rvl ];
|
|
|
|
};
|
|
|
|
}
|