11 buildPythonPackage rec {
14 disabled = pythonOlder "3.5";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-sdWcpkjC8LtOI1k0Wyk4vLXBcwYe1vuQON9J7P8JPxA=";
29 substituteInPlace pytest.ini \
30 --replace "--cov-append --cov-report term --cov tinydb" ""
39 pythonImportsCheck = [ "tinydb" ];
42 description = "Lightweight document oriented database written in Python";
43 homepage = "https://tinydb.readthedocs.org/";
44 changelog = "https://tinydb.readthedocs.io/en/latest/changelog.html";
45 license = licenses.mit;
46 maintainers = with maintainers; [ marcus7070 ];