about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/gast/default.nix
blob: 38334d5cc6b4f96182e76a96efc8ed7b94f0d372 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, fetchPypi, buildPythonPackage, astunparse }:

buildPythonPackage rec {
  pname = "gast";
  version =  "0.4.0";
  src = fetchPypi {
    inherit pname version;
    sha256 = "40feb7b8b8434785585ab224d1568b857edb18297e5a3047f1ba012bc83b42c1";
  };
  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.";
    license = licenses.bsd3;
    maintainers = with maintainers; [ jyp ];
  };
}