Merge pull request #68358 from ivan/fix-python-lmdb

pythonPackages.lmdb: fix build
This commit is contained in:
worldofpeace 2019-09-09 10:59:30 -04:00 committed by GitHub
commit d5c5847652
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}