about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cffi/default.nix
blob: 55bd8deef9acd29dee72286754d50b1b5571a5ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, buildPythonPackage, isPyPy, fetchPypi, libffi, pycparser, pytest }:

if isPyPy then null else buildPythonPackage rec {
  pname = "cffi";
  version = "1.10.0";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1mffyilq4qycm8gs4wkgb18rnqil8a9blqq77chdlshzxc8jkc5k";
  };

  propagatedBuildInputs = [ libffi pycparser ];
  buildInputs = [ pytest ];

  patchPhase = ''
    substituteInPlace testing/cffi0/test_ownlib.py --replace "gcc" "cc"
  '';

  checkPhase = ''
    py.test
  '';

  meta = with lib; {
    maintainers = with maintainers; [ domenkozar ];
    homepage = https://cffi.readthedocs.org/;
    license = with licenses; [ mit ];
    description = "Foreign Function Interface for Python calling C code";
  };
}