biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / xstatic-jquery / default.nix
blob2e3f4b9831a5b4b0b38aef351c12f21c53f204a3
2   buildPythonPackage,
3   lib,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "xstatic-jquery";
9   version = "3.5.1.1";
11   src = fetchPypi {
12     pname = "XStatic-jQuery";
13     inherit version;
14     sha256 = "e0ae8f8ec5bbd28045ba4bca06767a38bd5fc27cf9b71f434589f59370dcd323";
15   };
17   # no tests implemented
18   doCheck = false;
20   meta = with lib; {
21     homepage = "https://jquery.org";
22     description = "jquery packaged static files for python";
23     license = licenses.mit;
24     maintainers = with maintainers; [ makefu ];
25   };