New requirements.

This commit is contained in:
Itamar Turner-Trauring 2021-11-12 11:25:10 -05:00
parent bea4cf18a0
commit e7a5d14c0e
2 changed files with 5 additions and 2 deletions

View File

@ -4,7 +4,7 @@
, setuptools, setuptoolsTrial, pyasn1, zope_interface , setuptools, setuptoolsTrial, pyasn1, zope_interface
, service-identity, pyyaml, magic-wormhole, treq, appdirs , service-identity, pyyaml, magic-wormhole, treq, appdirs
, beautifulsoup4, eliot, autobahn, cryptography, netifaces , beautifulsoup4, eliot, autobahn, cryptography, netifaces
, html5lib, pyutil, distro, configparser , html5lib, pyutil, distro, configparser, klein, treq
}: }:
python.pkgs.buildPythonPackage rec { python.pkgs.buildPythonPackage rec {
# Most of the time this is not exactly the release version (eg 1.16.0). # Most of the time this is not exactly the release version (eg 1.16.0).

View File

@ -140,6 +140,10 @@ install_requires = [
# For the RangeMap datastructure. # For the RangeMap datastructure.
"collections-extended", "collections-extended",
# HTTP server and client
"klein",
"treq",
] ]
setup_requires = [ setup_requires = [
@ -397,7 +401,6 @@ setup(name="tahoe-lafs", # also set in __init__.py
# Python 2.7. # Python 2.7.
"decorator < 5", "decorator < 5",
"hypothesis >= 3.6.1", "hypothesis >= 3.6.1",
"treq",
"towncrier", "towncrier",
"testtools", "testtools",
"fixtures", "fixtures",