summary refs log tree commit diff
path: root/pkgs/development/python-modules/pynacl
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-18 18:02:18 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-18 18:02:18 +0100
commit62a875ee912556ec866321a695e3bc13768d88fa (patch)
treef886a88b6e65b46350a94114119a54db70cfda8b /pkgs/development/python-modules/pynacl
parentb42a5405df6b5f6b57e130afb5bdfa70e1935dda (diff)
downloadnixpkgs-62a875ee912556ec866321a695e3bc13768d88fa.tar
nixpkgs-62a875ee912556ec866321a695e3bc13768d88fa.tar.gz
nixpkgs-62a875ee912556ec866321a695e3bc13768d88fa.tar.bz2
nixpkgs-62a875ee912556ec866321a695e3bc13768d88fa.tar.lz
nixpkgs-62a875ee912556ec866321a695e3bc13768d88fa.tar.xz
nixpkgs-62a875ee912556ec866321a695e3bc13768d88fa.tar.zst
nixpkgs-62a875ee912556ec866321a695e3bc13768d88fa.zip
pythonPackages.pynacl: use system libsodium
Diffstat (limited to 'pkgs/development/python-modules/pynacl')
-rw-r--r--pkgs/development/python-modules/pynacl/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pynacl/default.nix b/pkgs/development/python-modules/pynacl/default.nix
index cc901ec972b..bceb2b50cc5 100644
--- a/pkgs/development/python-modules/pynacl/default.nix
+++ b/pkgs/development/python-modules/pynacl/default.nix
@@ -17,6 +17,8 @@ buildPythonPackage rec {
   checkInputs = [ pytest hypothesis ];
   propagatedBuildInputs = [ libsodium cffi six ];
 
+  SODIUM_INSTALL = "system";
+
   checkPhase = ''
     py.test
   '';