2021-05-01 14:43:04 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, isPyPy, fetchPypi, libffi, pycparser, pytestCheckHook }:
|
2017-05-01 15:50:55 +00:00
|
|
|
|
|
|
|
if isPyPy then null else buildPythonPackage rec {
|
|
|
|
pname = "cffi";
|
2021-08-26 19:32:31 +00:00
|
|
|
version = "1.14.6";
|
2017-05-01 15:50:55 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-26 19:32:31 +00:00
|
|
|
sha256 = "c9a875ce9d7fe32887784274dd533c57909b7b1dcadcc128a2ac21331a9765dd";
|
2017-05-01 15:50:55 +00:00
|
|
|
};
|
|
|
|
|
2017-09-27 09:25:50 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-05-01 14:43:41 +00:00
|
|
|
buildInputs = [ libffi ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pycparser ];
|
2017-05-01 15:50:55 +00:00
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
prePatch = lib.optionalString stdenv.isDarwin ''
|
2017-10-31 11:20:22 +00:00
|
|
|
'';
|
|
|
|
|
2017-09-16 14:27:33 +00:00
|
|
|
# The tests use -Werror but with python3.6 clang detects some unreachable code.
|
2021-01-24 00:29:22 +00:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang
|
2019-10-30 00:12:09 +00:00
|
|
|
"-Wno-unused-command-line-argument -Wno-unreachable-code";
|
2017-05-01 15:50:55 +00:00
|
|
|
|
2021-10-11 19:52:04 +00:00
|
|
|
doCheck = !stdenv.hostPlatform.isMusl;
|
2021-05-01 14:43:04 +00:00
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
2017-05-01 15:50:55 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-22 18:55:47 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar lnl7 ];
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://cffi.readthedocs.org/";
|
2021-01-24 00:29:22 +00:00
|
|
|
license = licenses.mit;
|
2017-05-01 15:50:55 +00:00
|
|
|
description = "Foreign Function Interface for Python calling C code";
|
|
|
|
};
|
|
|
|
}
|