mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
17 lines
542 B
Nix
17 lines
542 B
Nix
{ lib, fetchPypi, buildPythonPackage, astunparse }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gast";
|
|
version = "0.4.0";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "40feb7b8b8434785585ab224d1568b857edb18297e5a3047f1ba012bc83b42c1";
|
|
};
|
|
checkInputs = [ astunparse ] ;
|
|
meta = with 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 ];
|
|
};
|
|
}
|