depot/third_party/nixpkgs/pkgs/development/python-modules/httpserver/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

28 lines
688 B
Nix

{ lib, fetchPypi, buildPythonPackage, docopt, pythonOlder }:
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;
# Because it uses asyncio
disabled = pythonOlder "3.4";
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 ];
};
}