diff options
| author | bolives-hax <125610892+bolives-hax@users.noreply.github.com> | 2024-06-25 00:04:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-25 00:04:28 +0200 |
| commit | 50d6aae3fe0d07170bf93a2bf08b130c8348051b (patch) | |
| tree | 11693e06a116784760114a519b4fe9f8a1ddfc34 /pkgs/development/python-modules/httpserver | |
| parent | 5a2f055ee90f722c0830c5166f10880c5b20b017 (diff) | |
| parent | 225f8227afff0d8122faedc2d58bff2892a083e0 (diff) | |
Merge branch 'NixOS:master' into add-rutorrent-service
Diffstat (limited to 'pkgs/development/python-modules/httpserver')
| -rw-r--r-- | pkgs/development/python-modules/httpserver/default.nix | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/httpserver/default.nix b/pkgs/development/python-modules/httpserver/default.nix index 58d6c48c4e8a..9b65a6341ced 100644 --- a/pkgs/development/python-modules/httpserver/default.nix +++ b/pkgs/development/python-modules/httpserver/default.nix @@ -1,4 +1,9 @@ -{ lib, fetchPypi, buildPythonPackage, docopt, pythonOlder }: +{ + lib, + fetchPypi, + buildPythonPackage, + docopt, +}: buildPythonPackage rec { pname = "httpserver"; @@ -11,9 +16,6 @@ buildPythonPackage rec { # drivers. doCheck = false; - # Because it uses asyncio - disabled = pythonOlder "3.4"; - src = fetchPypi { inherit pname version; sha256 = "1q62g324dvb0hqdwwrnj41sqr4d3ly78v9nc26rz1whj4pwdmhsv"; @@ -21,6 +23,7 @@ buildPythonPackage rec { meta = { description = "Asyncio implementation of an HTTP server"; + mainProgram = "httpserver"; homepage = "https://github.com/thomwiggers/httpserver"; license = with lib.licenses; [ bsd3 ]; }; |
