about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/itanium_demangler/default.nix
blob: c67259eee0f6b2ba876971fbe6c1d9c5de35c7fc (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
{ buildPythonPackage
, fetchFromGitHub
, lib
, pytest
}:

buildPythonPackage rec {
  pname = "itanium_demangler";
  version = "1.0"; # pulled from pypi version

  src = fetchFromGitHub {
    owner = "whitequark";
    repo = "python-${pname}";
    rev = "29c77860be48e6dafe3496e4d9d0963ce414e366";
    sha256 = "0qm95l6542nk63986w9lgzkxg824l31714i584s02rh9xwfg1xfx";
  };

  checkInputs = [ pytest ];

  checkPhase = ''
    pytest tests/test.py
  '';

  meta = with lib; {
    description = "A pure Python parser for the Itanium C++ ABI symbol mangling language";
    homepage = "https://github.com/whitequark/python-itanium_demangler";
    license = licenses.bsd0;
    maintainers = [ maintainers.pamplemousse ];
  };
}