nixpkgs/pkgs/development/python-modules/gast/default.nix

17 lines
552 B
Nix
Raw Normal View History

2018-06-07 12:29:27 +01:00
{ stdenv, fetchPypi, buildPythonPackage, astunparse }:
buildPythonPackage rec {
pname = "gast";
2019-10-24 07:47:31 +01:00
version = "0.3.2";
2018-06-07 12:29:27 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:31 +01:00
sha256 = "5c7617f1f6c8b8b426819642b16b9016727ddaecd16af9a07753e537eba8a3a5";
2018-06-07 12:29:27 +01:00
};
checkInputs = [ astunparse ] ;
meta = with stdenv.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 ];
};
}