Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / gast / default.nix
blob38334d5cc6b4f96182e76a96efc8ed7b94f0d372
1 { lib, fetchPypi, buildPythonPackage, astunparse }:
3 buildPythonPackage rec {
4   pname = "gast";
5   version =  "0.4.0";
6   src = fetchPypi {
7     inherit pname version;
8     sha256 = "40feb7b8b8434785585ab224d1568b857edb18297e5a3047f1ba012bc83b42c1";
9   };
10   checkInputs = [ astunparse ] ;
11   meta = with lib; {
12     description = "GAST provides a compatibility layer between the AST of various Python versions, as produced by ast.parse from the standard ast module.";
13     license = licenses.bsd3;
14     maintainers = with maintainers; [ jyp ];
15   };