about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xstatic-jquery/default.nix
blob: 8e3f084ca7f03f73d8cb40b21894b8aa6d7d2598 (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
{ buildPythonPackage
, lib
, fetchPypi
}:

buildPythonPackage rec {
  pname = "XStatic-jQuery";
  version = "3.3.1.1";

  src = fetchPypi {
    inherit version pname;
    sha256 = "0xlgs4rlabzfcp8p2zspwpsljycb0djyrk7qy4qh76i7zkfhwn8j";
  };

  # no tests implemented
  doCheck = false;

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

}