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