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