depot/third_party/nixpkgs/pkgs/development/python-modules/itanium-demangler/default.nix
Default email 5557ff764c Project import generated by Copybara.
GitOrigin-RevId: 988cc958c57ce4350ec248d2d53087777f9e1949
2023-02-22 11:55:15 +01:00

40 lines
839 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 ];
};
}