nixpkgs/pkgs/development/python-modules/pycparser/default.nix

23 lines
544 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, python }:
buildPythonPackage rec {
pname = "pycparser";
2018-04-04 20:14:05 +02:00
version = "2.18";
src = fetchPypi {
inherit pname version;
2018-04-04 20:14:05 +02:00
sha256 = "99a8ca03e29851d96616ad0404b4aad7d9ee16f25c9f9708a11faf2810f7b226";
};
checkPhase = ''
${python.interpreter} -m unittest discover -s tests
'';
meta = with stdenv.lib; {
description = "C parser in Python";
homepage = https://github.com/eliben/pycparser;
license = licenses.bsd3;
maintainers = with maintainers; [ domenkozar ];
};
}