mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
29 lines
575 B
Nix
29 lines
575 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchPypi
|
|
, xstatic-jquery
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "XStatic-jquery-ui";
|
|
version = "1.13.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
sha256 = "3697e5f0ef355b8f4a1c724221592683c2db031935cbb57b46224eef474bd294";
|
|
};
|
|
|
|
# no tests implemented
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ xstatic-jquery ];
|
|
|
|
meta = with lib;{
|
|
homepage = "https://jqueryui.com/";
|
|
description = "jquery-ui packaged static files for python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ makefu ];
|
|
};
|
|
|
|
}
|