fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
38 lines
844 B
Nix
38 lines
844 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "itanium-demangler";
|
|
version = "1.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "whitequark";
|
|
repo = "python-itanium_demangler";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-I6NUfckt2cocQt5dZSFadpshTCuA/6bVNauNXypWh+A=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pytestFlagsArray = [ "tests/test.py" ];
|
|
|
|
pythonImportsCheck = [ "itanium_demangler" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python parser for the Itanium C++ ABI symbol mangling language";
|
|
homepage = "https://github.com/whitequark/python-itanium_demangler";
|
|
license = licenses.bsd0;
|
|
maintainers = with maintainers; [
|
|
fab
|
|
pamplemousse
|
|
];
|
|
};
|
|
}
|