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/tools/networking/updog/default.nix

26 lines
651 B

{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "updog";
version = "1.4";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "7n/ddjF6eJklo+T79+/zBxSHryebc2W9gxwxsb2BbF4=";
};
propagatedBuildInputs = with python3Packages; [
colorama flask flask-httpauth werkzeug pyopenssl
];
checkPhase = ''
$out/bin/updog --help > /dev/null
'';
meta = with lib; {
description = "Updog is a replacement for Python's SimpleHTTPServer";
homepage = "https://github.com/sc0tfree/updog";
license = licenses.mit;
maintainers = with maintainers; [ ethancedwards8 ];
};
}