summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/httpserver
diff options
context:
space:
mode:
authorSigmanificient <edhyjox@gmail.com>2024-05-16 22:19:08 +0200
committerSigmanificient <edhyjox@gmail.com>2024-05-17 13:05:55 +0200
commit05fa591701caed3c3211d0e9c7daac45a26fde48 (patch)
treeed32bd3fc3b6b993362de379a6e8d7e9c4d37ee3 /pkgs/development/python-modules/httpserver
parent5d5c4baad83ea369ea10ec52bde7144c6eb14519 (diff)
treewide: drop python 3.4 checks
Diffstat (limited to 'pkgs/development/python-modules/httpserver')
-rw-r--r--pkgs/development/python-modules/httpserver/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/httpserver/default.nix b/pkgs/development/python-modules/httpserver/default.nix
index 6d1374075886..59530ab5a704 100644
--- a/pkgs/development/python-modules/httpserver/default.nix
+++ b/pkgs/development/python-modules/httpserver/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchPypi, buildPythonPackage, docopt, pythonOlder }:
+{ lib, fetchPypi, buildPythonPackage, docopt }:
buildPythonPackage rec {
pname = "httpserver";
@@ -11,9 +11,6 @@ buildPythonPackage rec {
# drivers.
doCheck = false;
- # Because it uses asyncio
- disabled = pythonOlder "3.4";
-
src = fetchPypi {
inherit pname version;
sha256 = "1q62g324dvb0hqdwwrnj41sqr4d3ly78v9nc26rz1whj4pwdmhsv";