summary refs log tree commit diff
path: root/pkgs/development/python-modules/gast/default.nix
blob: 6d18a7ba6d110482f63c50ac15ba142dc02842fd (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
{ lib
, fetchFromGitHub
, fetchpatch
, buildPythonPackage
, astunparse
}:

buildPythonPackage rec {
  pname = "gast";
  version = "0.5.0";

  # TODO: remove this patch on the next release, this fixes a bug with parsing
  # assignment expressions e.g., `x := 1`.
  patches = [
    (fetchpatch {
      url = "https://github.com/serge-sans-paille/gast/commit/3cc9b4d05a80e4bb42882de00df314aaa1e6e591.patch";
      sha256 = "0ylpn0x0a4y6139vd048blsh77yd08npjcn4b5ydf89xnji5mlm1";
    })
  ];

  src = fetchFromGitHub {
    owner = "serge-sans-paille";
    repo = "gast";
    rev = version;
    sha256 = "0qsg36knv0k2ppzbr5m4w6spxxw7a77lw88y8vjx7m176bajnsbw";
  };

  checkInputs = [ astunparse ];

  meta = with lib; {
    description = "GAST provides a compatibility layer between the AST of various Python versions, as produced by ast.parse from the standard ast module.";
    homepage = "https://github.com/serge-sans-paille/gast/";
    license = licenses.bsd3;
    maintainers = with maintainers; [ jyp cpcloud ];
  };
}