Files
nixpkgs/pkgs/development/python-modules/gast/default.nix
Sandro Jäckel 61b63e8b5a python314Packages.gast: remove astunparse
Not required since c9d91d26a2
2026-05-13 20:27:37 +02:00

38 lines
720 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "gast";
version = "0.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "serge-sans-paille";
repo = "gast";
tag = version;
hash = "sha256-paaXVdhstNlLc/zv/L1tHuv9IZ0Vz/vz2x2y2ePpXRc=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "gast" ];
meta = {
description = "Compatibility layer between the AST of various Python versions";
homepage = "https://github.com/serge-sans-paille/gast/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
cpcloud
];
};
}