summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/xstatic-jquery-ui/default.nix
blob: 018ceccc13b2516f9611ab288e3c8d7a9115c422 (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-ui";
  version = "1.13.0.1";
  format = "setuptools";

  src = fetchPypi {
    pname = "XStatic-jquery-ui";
    inherit version;
    sha256 = "3697e5f0ef355b8f4a1c724221592683c2db031935cbb57b46224eef474bd294";
  };

  # no tests implemented
  doCheck = false;

  propagatedBuildInputs = [ xstatic-jquery ];

  meta = {
    homepage = "https://jqueryui.com/";
    description = "jquery-ui packaged static files for python";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ makefu ];
  };
}