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