python3Packages.boolean-py: modernize

This commit is contained in:
Harinn
2026-06-06 09:01:10 +07:00
parent 52b332f694
commit e5e1c6acd4
@@ -6,15 +6,17 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "boolean-py";
version = "5.0";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "bastikr";
repo = "boolean.py";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-h5iHcdN77ZRGMJnSJLoYkRTY1TeJ3yQ1eF193HKsNqU=";
};
@@ -30,4 +32,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd2;
maintainers = [ ];
};
}
})