mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
python.packages.gast: init at 0.2.0
This commit is contained in:
parent
48696cf4fe
commit
72f051a970
16
pkgs/development/python-modules/gast/default.nix
Normal file
16
pkgs/development/python-modules/gast/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -18173,6 +18173,8 @@ EOF
|
||||
|
||||
astunparse = callPackage ../development/python-modules/astunparse { };
|
||||
|
||||
gast = callPackage ../development/python-modules/gast { };
|
||||
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
Loading…
Reference in New Issue
Block a user