summary refs log tree commit diff
path: root/pkgs/development/python-modules/lmdb
diff options
context:
space:
mode:
authorIvan Kozik <ivan@ludios.org>2019-09-09 14:31:08 +0000
committerIvan Kozik <ivan@ludios.org>2019-09-09 14:33:58 +0000
commit39d0c9693eeade81d11c6219741668df4930ba5b (patch)
treef2904325a52cd73569a37127c99acd13dd02c6bb /pkgs/development/python-modules/lmdb
parent259202cb8021b6cfeb6ddf49239daf1ea5aeb724 (diff)
downloadnixpkgs-39d0c9693eeade81d11c6219741668df4930ba5b.tar
nixpkgs-39d0c9693eeade81d11c6219741668df4930ba5b.tar.gz
nixpkgs-39d0c9693eeade81d11c6219741668df4930ba5b.tar.bz2
nixpkgs-39d0c9693eeade81d11c6219741668df4930ba5b.tar.lz
nixpkgs-39d0c9693eeade81d11c6219741668df4930ba5b.tar.xz
nixpkgs-39d0c9693eeade81d11c6219741668df4930ba5b.tar.zst
nixpkgs-39d0c9693eeade81d11c6219741668df4930ba5b.zip
pythonPackages.lmdb: fix build
This fixes:

pythonCatchConflictsPhase
Found duplicated packages in closure for dependency 'lmdb':
  lmdb 0.97 (/build/lmdb-0.97)
  lmdb 0.97 (/nix/store/js0iimri6y9yqgfc111jzp3mrv5ic9cj-python3.7-lmdb-0.97/lib/python3.7/site-packages)

Package duplicates found in closure, see above. Usually this happens if two packages depend on different version of the same dependency.
builder for '/nix/store/9bcn2m3r5v8slmpj31hxw05j906qgl5l-python3.7-lmdb-0.97.drv' failed with exit code 1

This was probably broken by https://github.com/NixOS/nixpkgs/commit/f7e28bf5d8181926e600a222cb70180519d09726
Diffstat (limited to 'pkgs/development/python-modules/lmdb')
-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 4f090d73e60..13adad603d1 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 ];
   };
 
 }