python.pkgs.trustme: fix python2 build

+3 -1
+3 -1
pkgs/development/python-modules/trustme/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, cryptography, pytest, pyopenssl, service-identity }: 1 + { lib, buildPythonPackage, fetchPypi, isPy3k, cryptography, futures, pytest, pyopenssl, service-identity }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "trustme"; ··· 15 15 ''; 16 16 propagatedBuildInputs = [ 17 17 cryptography 18 + ] ++ lib.optionals (!isPy3k) [ 19 + futures 18 20 ]; 19 21 20 22 meta = {