about summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-09-09 10:59:30 -0400
committerGitHub <noreply@github.com>2019-09-09 10:59:30 -0400
commitd5c5847652819f97f8a04f4544c85cf8fc118f28 (patch)
treef2904325a52cd73569a37127c99acd13dd02c6bb
parent259202cb8021b6cfeb6ddf49239daf1ea5aeb724 (diff)
parent39d0c9693eeade81d11c6219741668df4930ba5b (diff)
downloadnixlib-d5c5847652819f97f8a04f4544c85cf8fc118f28.tar
nixlib-d5c5847652819f97f8a04f4544c85cf8fc118f28.tar.gz
nixlib-d5c5847652819f97f8a04f4544c85cf8fc118f28.tar.bz2
nixlib-d5c5847652819f97f8a04f4544c85cf8fc118f28.tar.lz
nixlib-d5c5847652819f97f8a04f4544c85cf8fc118f28.tar.xz
nixlib-d5c5847652819f97f8a04f4544c85cf8fc118f28.tar.zst
nixlib-d5c5847652819f97f8a04f4544c85cf8fc118f28.zip
Merge pull request #68358 from ivan/fix-python-lmdb
pythonPackages.lmdb: fix build
-rw-r--r--pkgs/development/python-modules/lmdb/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/lmdb/default.nix b/pkgs/development/python-modules/lmdb/default.nix
index 4f090d73e60f..13adad603d10 100644
--- a/pkgs/development/python-modules/lmdb/default.nix
+++ b/pkgs/development/python-modules/lmdb/default.nix
@@ -16,7 +16,6 @@ buildPythonPackage rec {
 
   checkInputs = [ pytest cffi ];
   checkPhase = ''
-    export PYTHONPATH=.:$PYTHONPATH
     py.test
   '';
 
@@ -24,7 +23,7 @@ buildPythonPackage rec {
     description = "Universal Python binding for the LMDB 'Lightning' Database";
     homepage = "https://github.com/dw/py-lmdb";
     license = licenses.openldap;
-    maintainers = with maintainers; [ copumpkin ];
+    maintainers = with maintainers; [ copumpkin ivan ];
   };
 
 }