summary refs log tree commit diff
path: root/pkgs/development/python-modules/xstatic-jquery/default.nix
blob: a1a5e2b4dadc118ea077a0994fe15c409b87de1b (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.4.1.0";

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

  # 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 ];
  };

}