about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycparser/default.nix
blob: fbdb230e3a874275ecde6ddeb5a59c3f803d1997 (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
31
32
33
{
  lib,
  buildPythonPackage,
  fetchPypi,
  unittestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "pycparser";
  version = "2.22";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-SRyL6cBA9TkPW/RKWwd1K9B/Vu35kjgbBccBQ57sEPY=";
  };

  nativeCheckInputs = [ unittestCheckHook ];
  disabled = pythonOlder "3.8";

  unittestFlagsArray = [
    "-s"
    "tests"
  ];

  meta = with lib; {
    description = "C parser in Python";
    homepage = "https://github.com/eliben/pycparser";
    license = licenses.bsd3;
    maintainers = with maintainers; [ domenkozar ];
  };
}