depot/third_party/nixpkgs/pkgs/development/python-modules/pycparser/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

23 lines
579 B
Nix

{ lib, buildPythonPackage, fetchPypi, unittestCheckHook }:
buildPythonPackage rec {
pname = "pycparser";
version = "2.21";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206";
};
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [ "-s" "tests" ];
meta = with lib; {
description = "C parser in Python";
homepage = "https://github.com/eliben/pycparser";
license = licenses.bsd3;
maintainers = with maintainers; [ domenkozar ];
};
}