Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / xstatic-jquery-file-upload / default.nix
blob0316a84937626860b2f39c77aaa797bcdaac2b87
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 , xstatic-jquery
5 }:
7 buildPythonPackage rec {
8   pname = "XStatic-jQuery-File-Upload";
9   version = "10.31.0.1";
11   src = fetchPypi {
12     inherit version pname;
13     sha256 = "7d716f26aca14732c35c54f0ba6d38187600ab472fc98a91d972d12c5a70db27";
14   };
16   # no tests implemented
17   doCheck = false;
19   propagatedBuildInputs = [ xstatic-jquery ];
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   };