perlPackages.NetAsyncWebSocket: 0.13 -> 0.14 (#352432)
[NixPkgs.git] / pkgs / development / python-modules / xstatic-jquery-file-upload / default.nix
blobcb5efd7aebb822d9b6a0bfacfacd9e3a495ab47a
2   buildPythonPackage,
3   lib,
4   fetchPypi,
5   xstatic-jquery,
6 }:
8 buildPythonPackage rec {
9   pname = "xstatic-jquery-file-upload";
10   version = "10.31.0.1";
12   src = fetchPypi {
13     pname = "XStatic-jQuery-File-Upload";
14     inherit version;
15     sha256 = "7d716f26aca14732c35c54f0ba6d38187600ab472fc98a91d972d12c5a70db27";
16   };
18   # no tests implemented
19   doCheck = false;
21   propagatedBuildInputs = [ xstatic-jquery ];
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   };