at 18.09-beta 540 B view raw
1{ stdenv, fetchPypi, buildPythonPackage, astunparse }: 2 3buildPythonPackage rec { 4 pname = "gast"; 5 version = "0.2.0"; 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "0c296xm1vz9x4w4inmdl0k8mnc0i9arw94si2i7pglpc461r0s3h"; 9 }; 10 checkInputs = [ astunparse ] ; 11 meta = with stdenv.lib; { 12 description = "GAST provides a compatibility layer between the AST of various Python versions, as produced by ast.parse from the standard ast module."; 13 license = licenses.bsd3; 14 maintainers = with maintainers; [ jyp ]; 15 }; 16}