Merge pull request #247429 from r-ryantm/auto-update/python310Packages.pygccxml

python310Packages.pygccxml: 2.2.1 -> 2.3.0
This commit is contained in:
Fabian Affolter 2023-08-06 21:06:33 +02:00 committed by GitHub
commit 831b3c5120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,38 @@
{ lib, castxml, fetchFromGitHub, buildPythonPackage,
llvmPackages }:
{ lib
, castxml
, fetchFromGitHub
, buildPythonPackage
, llvmPackages
, pythonOlder
}:
buildPythonPackage rec {
pname = "pygccxml";
version = "2.2.1";
version = "2.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "gccxml";
repo = "pygccxml";
rev = "v${version}";
sha256 = "1msqpg3dqn7wjlf91ddljxzz01a3b1p2sy91n36lrsy87lz499gh";
owner = "gccxml";
repo = "pygccxml";
rev = "refs/tags/v${version}";
hash = "sha256-+cmp41iWbkUSLNFLvEPHocpTQAX2CpD8HMXLIYcy+8k=";
};
buildInputs = [ castxml llvmPackages.libcxxStdenv];
buildInputs = [
castxml
llvmPackages.libcxxStdenv
];
# running the suite is hard, needs to generate xml_generator.cfg
# but the format doesn't accept -isystem directives
doCheck = false;
meta = with lib; {
homepage = "https://github.com/gccxml/pygccxml";
description = "Python package for easy C++ declarations navigation";
homepage = "https://github.com/gccxml/pygccxml";
changelog = "https://github.com/CastXML/pygccxml/blob/v${version}/CHANGELOG.md";
license = licenses.boost;
maintainers = with maintainers; [ teto ];
};