My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pycparser/default.nix

22 lines
536 B

{ lib, buildPythonPackage, fetchPypi, python }:
buildPythonPackage rec {
pname = "pycparser";
version = "2.21";
src = fetchPypi {
inherit pname version;
sha256 = "e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206";
};
checkPhase = ''
${python.interpreter} -m unittest discover -s tests
'';
meta = with lib; {
description = "C parser in Python";
homepage = "https://github.com/eliben/pycparser";
license = licenses.bsd3;
maintainers = with maintainers; [ domenkozar ];
};
}