Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / xstatic-jquery-ui / default.nix
blob8c872d0bbd19ca91aaeb90dd9b0f16536d03889a
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 , xstatic-jquery
5 }:
7 buildPythonPackage rec {
8   pname = "XStatic-jquery-ui";
9   version = "1.12.1.1";
11   src = fetchPypi {
12     inherit version pname;
13     sha256 = "d6ba48bb474420a8bcb2be02eef6ae96281ec24eff6befa54f04ebc9e4cc8910";
14   };
16   # no tests implemented
17   doCheck = false;
19   propagatedBuildInputs = [ xstatic-jquery ];
21   meta = with lib;{
22     homepage = "https://jqueryui.com/";
23     description = "jquery-ui packaged static files for python";
24     license = licenses.mit;
25     maintainers = with maintainers; [ makefu ];
26   };