python.packages.gast: init at 0.2.0

This commit is contained in:
Jean-Philippe Bernardy 2018-06-07 13:29:27 +02:00
parent 48696cf4fe
commit 72f051a970
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ stdenv, fetchPypi, buildPythonPackage, astunparse }:
buildPythonPackage rec {
pname = "gast";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "0c296xm1vz9x4w4inmdl0k8mnc0i9arw94si2i7pglpc461r0s3h";
};
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 ];
};
}

View file

@ -18173,6 +18173,8 @@ EOF
astunparse = callPackage ../development/python-modules/astunparse { };
gast = callPackage ../development/python-modules/gast { };
});
in fix' (extends overrides packages)