summary refs log tree commit diff
path: root/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix
blob: ce3f8c76dfa6cd9301825ad2065e526506539ec8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ buildPythonPackage
, lib
, fetchPypi
, xstatic-jquery
}:

buildPythonPackage rec {
  pname = "XStatic-jQuery-File-Upload";
  version = "10.31.0.1";

  src = fetchPypi {
    inherit version pname;
    sha256 = "7d716f26aca14732c35c54f0ba6d38187600ab472fc98a91d972d12c5a70db27";
  };

  # no tests implemented
  doCheck = false;

  propagatedBuildInputs = [ xstatic-jquery ];

  meta = with lib;{
    homepage =  "https://plugins.jquery.com/project/jQuery-File-Upload";
    description = "jquery-file-upload packaged static files for python";
    license = licenses.mit;
    maintainers = with maintainers; [ makefu ];
  };

}