python312Packages.gast: modernize

This commit is contained in:
Doron Behar
2024-08-13 20:48:48 +03:00
parent fa12935a32
commit 129eace28d
@@ -16,8 +16,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "serge-sans-paille";
repo = pname;
rev = version;
repo = "gast";
rev = "refs/tags/${version}";
hash = "sha256-0y2bHT7YEfTvDxTm6yLl3GmnPUYEieoGEnwkzfA6mOg=";
};
@@ -28,11 +28,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "gast" ];
meta = with lib; {
meta = {
description = "Compatibility layer between the AST of various Python versions";
homepage = "https://github.com/serge-sans-paille/gast/";
license = licenses.bsd3;
maintainers = with maintainers; [
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
jyp
cpcloud
];