Merge pull request #11036 from FRidh/pycparser

python pycparser: 2.10 -> 2.14
This commit is contained in:
Domen Kožar 2015-11-16 11:32:00 +01:00
commit ae15f96fd1

View File

@ -2888,17 +2888,18 @@ let
};
pycparser = buildPythonPackage rec {
name = "pycparser-2.10";
name = "pycparser-${version}";
version = "2.14";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/p/pycparser/${name}.tar.gz";
md5 = "d87aed98c8a9f386aa56d365fe4d515f";
sha256 = "7959b4a74abdc27b312fed1c21e6caf9309ce0b29ea86b591fd2e99ecdf27f73";
};
# ImportError: No module named test
doCheck = false;
meta = {
description = "C parser in Python";
homepage = https://github.com/eliben/pycparser;
license = licenses.bsd3;
maintainers = with maintainers; [ iElectric ];
};
};