diff --git a/tahoe-lafs.nix b/tahoe-lafs.nix index e325918418dbc745fda316a1e7950b749882d0cf..eb9a33c10a81cb4dcfebcb282795575089e37bbf 100644 --- a/tahoe-lafs.nix +++ b/tahoe-lafs.nix @@ -1,8 +1,8 @@ -{ fetchFromGitHub, nettools, pythonPackages, buildPythonPackage -, twisted, foolscap, nevow, simplejson, zfec, pycryptopp, darcsver -, setuptoolsTrial, setuptoolsDarcs, pycrypto, pyasn1, zope_interface +{ fetchFromGitHub, nettools, python +, twisted, foolscap, nevow, zfec +, setuptoolsTrial, pyasn1, zope_interface , service-identity, pyyaml, magic-wormhole, treq, appdirs -, eliot, autobahn +, eliot, autobahn, cryptography }: buildPythonPackage rec { version = "1.14.0.dev"; @@ -29,12 +29,12 @@ buildPythonPackage rec { ''; - propagatedBuildInputs = with pythonPackages; [ - twisted foolscap nevow simplejson zfec pycryptopp darcsver - setuptoolsTrial setuptoolsDarcs pycrypto pyasn1 zope_interface - service-identity pyyaml magic-wormhole treq appdirs + propagatedBuildInputs = with python.pkgs; [ + twisted foolscap nevow zfec appdirs + setuptoolsTrial pyasn1 zope_interface + service-identity pyyaml magic-wormhole treq - eliot autobahn + eliot autobahn cryptography ]; doCheck = false;