nixpkgs/pkgs/development/python-modules/cffi/default.nix

34 lines
1021 B
Nix
Raw Normal View History

2017-10-29 00:47:46 +01:00
{ stdenv, buildPythonPackage, isPy27, isPyPy, fetchPypi, libffi, pycparser, pytest }:
2017-05-01 16:50:55 +01:00
if isPyPy then null else buildPythonPackage rec {
pname = "cffi";
2017-10-25 19:04:35 +01:00
version = "1.11.2";
2017-05-01 16:50:55 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-10-25 19:04:35 +01:00
sha256 = "ab87dd91c0c4073758d07334c1e5f712ce8fe48f007b86f8238773963ee700a6";
2017-05-01 16:50:55 +01:00
};
2017-10-29 00:47:46 +01:00
patches = stdenv.lib.optional (isPy27 && stdenv.cc.isClang) ./clang.patch;
2017-09-27 10:25:50 +01:00
outputs = [ "out" "dev" ];
2017-05-01 16:50:55 +01:00
propagatedBuildInputs = [ libffi pycparser ];
buildInputs = [ pytest ];
# The tests use -Werror but with python3.6 clang detects some unreachable code.
2017-10-29 00:47:46 +01:00
NIX_CFLAGS_COMPILE = stdenv.lib.optionals stdenv.cc.isClang [ "-Wno-unused-command-line-argument" "-Wno-unreachable-code" ];
2017-05-01 16:50:55 +01:00
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
2017-05-01 16:50:55 +01:00
maintainers = with maintainers; [ domenkozar ];
homepage = https://cffi.readthedocs.org/;
license = with licenses; [ mit ];
description = "Foreign Function Interface for Python calling C code";
};
}