depot/third_party/nixpkgs/pkgs/development/python-modules/xstatic-jquery/default.nix

27 lines
530 B
Nix
Raw Normal View History

{
buildPythonPackage,
lib,
fetchPypi,
}:
buildPythonPackage rec {
pname = "xstatic-jquery";
version = "3.5.1.1";
src = fetchPypi {
pname = "XStatic-jQuery";
inherit version;
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 ];
};
}