17 lines
552 B
Nix
17 lines
552 B
Nix
{ stdenv, fetchPypi, buildPythonPackage, astunparse }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gast";
|
|
version = "0.3.3";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b881ef288a49aa81440d2c5eb8aeefd4c2bb8993d5f50edae7413a85bfdb3b57";
|
|
};
|
|
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 ];
|
|
};
|
|
}
|