python3Packages.bashlex: modernize

This commit is contained in:
Harinn
2026-06-06 01:40:28 +07:00
parent f959b4590f
commit ad8b2eba95
@@ -7,16 +7,18 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "bashlex";
version = "0.18";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "idank";
repo = "bashlex";
rev = version;
tag = finalAttrs.version;
hash = "sha256-ddZN91H95RiTLXx4lpES1Dmz7nNsSVUeuFuOEpJ7LQI=";
};
@@ -37,4 +39,4 @@ buildPythonPackage rec {
homepage = "https://github.com/idank/bashlex";
maintainers = with lib.maintainers; [ multun ];
};
}
})