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