python3Packages.xstatic-jquery-ui: modernize

This commit is contained in:
Harinn
2026-06-15 21:53:42 +07:00
parent d6e99b9efe
commit 651cd7fd7d
@@ -6,15 +6,17 @@
xstatic-jquery,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "xstatic-jquery-ui";
version = "1.13.0.1";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "XStatic-jquery-ui";
inherit version;
sha256 = "3697e5f0ef355b8f4a1c724221592683c2db031935cbb57b46224eef474bd294";
inherit (finalAttrs) version;
hash = "sha256-Npfl8O81W49KHHJCIVkmg8LbAxk1y7V7RiJO70dL0pQ=";
};
build-system = [ setuptools ];
@@ -24,10 +26,12 @@ buildPythonPackage rec {
dependencies = [ xstatic-jquery ];
pythonImportsCheck = [ "xstatic.pkg.jquery_ui" ];
meta = {
homepage = "https://jqueryui.com/";
description = "jquery-ui packaged static files for python";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ makefu ];
};
}
})