2019-09-14 20:09:56 +01:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k
|
2018-10-15 19:43:03 +01:00
|
|
|
, nose
|
2019-09-14 20:09:56 +01:00
|
|
|
, pytest
|
2018-10-15 19:43:03 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "minidb";
|
2020-05-23 19:02:28 +01:00
|
|
|
version = "2.0.4";
|
2019-10-07 16:20:23 +01:00
|
|
|
disabled = !isPy3k;
|
2018-10-15 19:43:03 +01:00
|
|
|
|
2019-09-14 20:09:56 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "thp";
|
|
|
|
repo = "minidb";
|
|
|
|
rev = version;
|
2020-05-23 19:02:28 +01:00
|
|
|
sha256 = "0i607rkfx0rkyllcx4vf3w2z0wxzs1gqigfw87q90pjrbbh2q4sb";
|
2018-10-15 19:43:03 +01:00
|
|
|
};
|
|
|
|
|
2019-09-14 20:09:56 +01:00
|
|
|
# module imports are incompatible with python2
|
|
|
|
doCheck = isPy3k;
|
|
|
|
checkInputs = [ nose pytest ];
|
2018-10-15 19:43:03 +01:00
|
|
|
checkPhase = ''
|
2019-09-14 20:09:56 +01:00
|
|
|
pytest
|
2018-10-15 19:43:03 +01:00
|
|
|
'';
|
|
|
|
|
2019-09-14 20:09:56 +01:00
|
|
|
meta = with lib; {
|
2018-10-15 19:43:03 +01:00
|
|
|
description = "A simple SQLite3-based store for Python objects";
|
2019-09-14 20:09:56 +01:00
|
|
|
homepage = "https://thp.io/2010/minidb/";
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = [ maintainers.tv ];
|
2018-10-15 19:43:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|