depot/third_party/nixpkgs/pkgs/development/python-modules/httpserver/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

30 lines
623 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
docopt,
}:
buildPythonPackage rec {
pname = "httpserver";
version = "1.1.0";
format = "setuptools";
buildInputs = [ docopt ];
# Tests pull in lots of other dependencies to emulate different web
# drivers.
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "1q62g324dvb0hqdwwrnj41sqr4d3ly78v9nc26rz1whj4pwdmhsv";
};
meta = {
description = "Asyncio implementation of an HTTP server";
mainProgram = "httpserver";
homepage = "https://github.com/thomwiggers/httpserver";
license = with lib.licenses; [ bsd3 ];
};
}