about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycparser/default.nix
blob: 4aa2c104d8a01b11d574484446a5bbbdd9af282b (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
{ 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 ];
  };
}