nixpkgs/pkgs/development/python-modules/lmdb/default.nix
Ivan Kozik 39d0c9693e 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 f7e28bf5d8
2019-09-09 14:33:58 +00:00

30 lines
571 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, cffi
}:
buildPythonPackage rec {
pname = "lmdb";
version = "0.97";
src = fetchPypi {
inherit pname version;
sha256 = "0jw3n14x6qg5wps2w4qkqf4pyan949h1s2nbkrz2qh7xwnnp2g8p";
};
checkInputs = [ pytest cffi ];
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
description = "Universal Python binding for the LMDB 'Lightning' Database";
homepage = "https://github.com/dw/py-lmdb";
license = licenses.openldap;
maintainers = with maintainers; [ copumpkin ivan ];
};
}