fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
29 lines
608 B
Nix
29 lines
608 B
Nix
{
|
|
buildPythonPackage,
|
|
lib,
|
|
fetchPypi,
|
|
xstatic-jquery,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xstatic-jquery-ui";
|
|
version = "1.13.0.1";
|
|
|
|
src = fetchPypi {
|
|
pname = "XStatic-jquery-ui";
|
|
inherit version;
|
|
sha256 = "3697e5f0ef355b8f4a1c724221592683c2db031935cbb57b46224eef474bd294";
|
|
};
|
|
|
|
# no tests implemented
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ xstatic-jquery ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://jqueryui.com/";
|
|
description = "jquery-ui packaged static files for python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ makefu ];
|
|
};
|
|
}
|