python310Packages.txtorcon: update dependencies

This commit is contained in:
Sandro Jäckel 2022-05-30 04:44:58 +02:00
parent 260ed44242
commit 42725bb36e
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,6 +1,22 @@
{ lib, stdenv, python, buildPythonPackage, pythonOlder, fetchPypi, isPy3k, incremental, ipaddress, twisted
, automat, zope_interface, idna, pyopenssl, service-identity, pytestCheckHook, mock, lsof
, GeoIP }:
{ lib
, stdenv
, python
, buildPythonPackage
, pythonOlder
, fetchPypi
, cryptography
, incremental
, twisted
, automat
, zope_interface
, idna
, pyopenssl
, service-identity
, pytestCheckHook
, mock
, lsof
, GeoIP
}:
buildPythonPackage rec {
pname = "txtorcon";
@ -12,9 +28,12 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
incremental twisted automat zope_interface
] ++ twisted.optional-dependencies.tls
++ lib.optionals (!isPy3k) [ ipaddress ];
cryptography
incremental
twisted
automat
zope_interface
] ++ twisted.optional-dependencies.tls;
checkInputs = [ pytestCheckHook mock lsof GeoIP ];