Merge pull request #68358 from ivan/fix-python-lmdb
pythonPackages.lmdb: fix build
This commit is contained in:
commit
d5c5847652
|
@ -16,7 +16,6 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
checkInputs = [ pytest cffi ];
|
checkInputs = [ pytest cffi ];
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
export PYTHONPATH=.:$PYTHONPATH
|
|
||||||
py.test
|
py.test
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
@ -24,7 +23,7 @@ buildPythonPackage rec {
|
||||||
description = "Universal Python binding for the LMDB 'Lightning' Database";
|
description = "Universal Python binding for the LMDB 'Lightning' Database";
|
||||||
homepage = "https://github.com/dw/py-lmdb";
|
homepage = "https://github.com/dw/py-lmdb";
|
||||||
license = licenses.openldap;
|
license = licenses.openldap;
|
||||||
maintainers = with maintainers; [ copumpkin ];
|
maintainers = with maintainers; [ copumpkin ivan ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue