nixpkgs/pkgs/development/python-modules/gast/default.nix
R. RyanTM 5cb588f863 python37Packages.gast: 0.2.0 -> 0.2.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-gast/versions
2019-01-17 09:15:00 +01:00

17 lines
540 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, astunparse }:
buildPythonPackage rec {
pname = "gast";
version = "0.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "1w5dzdb3gpcfmd2s0b93d8gff40a1s41rv31458z14inb3s9v4zy";
};
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 ];
};
}