1{
2 buildPythonPackage,
3 lib,
4 fetchPypi,
5 xstatic-jquery,
6}:
7
8buildPythonPackage rec {
9 pname = "xstatic-jquery-ui";
10 version = "1.13.0.1";
11
12 src = fetchPypi {
13 pname = "XStatic-jquery-ui";
14 inherit version;
15 sha256 = "3697e5f0ef355b8f4a1c724221592683c2db031935cbb57b46224eef474bd294";
16 };
17
18 # no tests implemented
19 doCheck = false;
20
21 propagatedBuildInputs = [ xstatic-jquery ];
22
23 meta = with lib; {
24 homepage = "https://jqueryui.com/";
25 description = "jquery-ui packaged static files for python";
26 license = licenses.mit;
27 maintainers = with maintainers; [ makefu ];
28 };
29}