summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix
blob: 9c98ffcb4e2c0d1a5be3a255b9e7153853f839ad (plain)
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
29
30
{
  buildPythonPackage,
  lib,
  fetchPypi,
  xstatic-jquery,
}:

buildPythonPackage rec {
  pname = "xstatic-jquery-file-upload";
  version = "10.31.0.1";
  format = "setuptools";

  src = fetchPypi {
    pname = "XStatic-jQuery-File-Upload";
    inherit version;
    sha256 = "7d716f26aca14732c35c54f0ba6d38187600ab472fc98a91d972d12c5a70db27";
  };

  # no tests implemented
  doCheck = false;

  propagatedBuildInputs = [ xstatic-jquery ];

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