5cb588f863
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
17 lines
540 B
Nix
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 ];
|
|
};
|
|
}
|