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 format = "setuptools"; 12 13 src = fetchPypi { 14 pname = "XStatic-jquery-ui"; 15 inherit version; 16 sha256 = "3697e5f0ef355b8f4a1c724221592683c2db031935cbb57b46224eef474bd294"; 17 }; 18 19 # no tests implemented 20 doCheck = false; 21 22 propagatedBuildInputs = [ xstatic-jquery ]; 23 24 meta = with lib; { 25 homepage = "https://jqueryui.com/"; 26 description = "jquery-ui packaged static files for python"; 27 license = licenses.mit; 28 maintainers = with maintainers; [ makefu ]; 29 }; 30}