linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pycparser / default.nix
blob5fe7cab1cdb2987646abf55709fdcf26cbf8086a
1 { lib, buildPythonPackage, fetchPypi, python }:
3 buildPythonPackage rec {
4   pname = "pycparser";
5   version = "2.20";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0";
10   };
12   checkPhase = ''
13     ${python.interpreter} -m unittest discover -s tests
14   '';
16   meta = with lib; {
17     description = "C parser in Python";
18     homepage = "https://github.com/eliben/pycparser";
19     license = licenses.bsd3;
20     maintainers = with maintainers; [ domenkozar ];
21   };