My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/xstatic-jquery/default.nix

25 lines
502 B

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