diff options
| author | Jörg Thalheim <Mic92@users.noreply.github.com> | 2024-10-12 13:16:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-12 13:16:51 +0200 |
| commit | a808f823bb641e21036679584ea9e345865729aa (patch) | |
| tree | 0d042abcd2f3fb714498a48382e2835a76b9429d /pkgs/development/python-modules/httpserver | |
| parent | 9a6d7cc9f7870f37929e8baf8bd7cc3f42c834e8 (diff) | |
| parent | 562995272c6557ab647a16ab76330e21623a3e86 (diff) | |
Merge branch 'master' into docs/improve-go-builder
Diffstat (limited to 'pkgs/development/python-modules/httpserver')
| -rw-r--r-- | pkgs/development/python-modules/httpserver/default.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/httpserver/default.nix b/pkgs/development/python-modules/httpserver/default.nix index 6d1374075886..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"; |
