2018-02-27 09:50:09 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, lib
|
|
|
|
, fetchPypi
|
|
|
|
, xstatic-jquery
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "XStatic-jQuery-File-Upload";
|
2018-10-15 23:46:42 +01:00
|
|
|
version = "9.22.0.1";
|
2018-02-27 09:50:09 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version pname;
|
2018-10-15 23:46:42 +01:00
|
|
|
sha256 = "0jy7xnww0177fv0asssxvv8l1032jcnbkvz39z16yd6k34v53fzf";
|
2018-02-27 09:50:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# no tests implemented
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ xstatic-jquery ];
|
|
|
|
|
|
|
|
meta = with lib;{
|
|
|
|
homepage = http://plugins.jquery.com/project/jQuery-File-Upload;
|
|
|
|
description = "jquery-file-upload packaged static files for python";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ makefu ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|