2018-06-07 12:29:27 +01:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, astunparse }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gast";
|
2019-01-17 04:32:35 +00:00
|
|
|
version = "0.2.2";
|
2018-06-07 12:29:27 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-17 04:32:35 +00:00
|
|
|
sha256 = "1w5dzdb3gpcfmd2s0b93d8gff40a1s41rv31458z14inb3s9v4zy";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|