about summary refs log tree commit diff
path: root/pkgs/development/python-modules/itanium-demangler/default.nix
blob: 67b71c9bf217da1f1e3dcc42f834d305f445f06a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ 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 ];
  };
}