diff options
Diffstat (limited to 'pkgs/development/python-modules/torpy/default.nix')
-rw-r--r-- | pkgs/development/python-modules/torpy/default.nix | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/torpy/default.nix b/pkgs/development/python-modules/torpy/default.nix index cfaaef421926..d6f257dfa9ad 100644 --- a/pkgs/development/python-modules/torpy/default.nix +++ b/pkgs/development/python-modules/torpy/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, pythonOlder -, fetchFromGitHub -, cryptography -, pytestCheckHook -, requests +{ + lib, + buildPythonPackage, + pythonOlder, + fetchFromGitHub, + cryptography, + pytestCheckHook, + requests, }: buildPythonPackage rec { @@ -24,20 +25,16 @@ buildPythonPackage rec { propagatedBuildInputs = [ cryptography requests - ]; - - nativeCheckInputs = [ - pytestCheckHook ]; + nativeCheckInputs = [ pytestCheckHook ]; + disabledTestPaths = [ # requires network "tests/integration" ]; - pythonImportsCheck = [ - "cryptography" - ]; + pythonImportsCheck = [ "cryptography" ]; meta = with lib; { description = "Pure python Tor client"; |