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-file-upload/default.nix

28 lines
627 B

{ buildPythonPackage
, lib
, fetchPypi
, xstatic-jquery
}:
buildPythonPackage rec {
pname = "XStatic-jQuery-File-Upload";
version = "10.31.0.1";
src = fetchPypi {
inherit version pname;
sha256 = "7d716f26aca14732c35c54f0ba6d38187600ab472fc98a91d972d12c5a70db27";
};
# no tests implemented
doCheck = false;
propagatedBuildInputs = [ xstatic-jquery ];
meta = with lib;{
homepage = "https://plugins.jquery.com/project/jQuery-File-Upload";
description = "jquery-file-upload packaged static files for python";
license = licenses.mit;
maintainers = with maintainers; [ makefu ];
};
}