blob: 2786018b99adf00c56be3eaa8fea29d347b4cc79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pycodestyle
, pyyaml
}:
buildPythonPackage rec {
pname = "tinydb";
version = "4.8.0";
disabled = pythonOlder "3.5";
format = "pyproject";
src = fetchFromGitHub {
owner = "msiemens";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-sdWcpkjC8LtOI1k0Wyk4vLXBcwYe1vuQON9J7P8JPxA=";
};
nativeBuildInputs = [
poetry-core
];
postPatch = ''
substituteInPlace pytest.ini \
--replace "--cov-append --cov-report term --cov tinydb" ""
'';
nativeCheckInputs = [
pytestCheckHook
pycodestyle
pyyaml
];
pythonImportsCheck = [ "tinydb" ];
meta = with lib; {
description = "Lightweight document oriented database written in Python";
homepage = "https://tinydb.readthedocs.org/";
changelog = "https://tinydb.readthedocs.io/en/latest/changelog.html";
license = licenses.mit;
maintainers = with maintainers; [ marcus7070 ];
};
}
|