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