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

  src = fetchPypi {
    inherit version pname;
    sha256 = "e0ae8f8ec5bbd28045ba4bca06767a38bd5fc27cf9b71f434589f59370dcd323";
  };

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

}