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