python313Packages.publicsuffixlist: 1.0.2.20250122 -> 1.0.2.20250124 (#376319)
[NixPkgs.git] / pkgs / development / python-modules / xstatic-jquery-ui / default.nix
blob9af1d20c0cdb6d56abd388c9ed05938ea33418e8
2   buildPythonPackage,
3   lib,
4   fetchPypi,
5   xstatic-jquery,
6 }:
8 buildPythonPackage rec {
9   pname = "xstatic-jquery-ui";
10   version = "1.13.0.1";
12   src = fetchPypi {
13     pname = "XStatic-jquery-ui";
14     inherit version;
15     sha256 = "3697e5f0ef355b8f4a1c724221592683c2db031935cbb57b46224eef474bd294";
16   };
18   # no tests implemented
19   doCheck = false;
21   propagatedBuildInputs = [ xstatic-jquery ];
23   meta = with lib; {
24     homepage = "https://jqueryui.com/";
25     description = "jquery-ui packaged static files for python";
26     license = licenses.mit;
27     maintainers = with maintainers; [ makefu ];
28   };