Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 16 lines 552 B view raw
1{ stdenv, fetchPypi, buildPythonPackage, astunparse }: 2 3buildPythonPackage rec { 4 pname = "gast"; 5 version = "0.3.2"; 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "5c7617f1f6c8b8b426819642b16b9016727ddaecd16af9a07753e537eba8a3a5"; 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}