summary refs log tree commit diff
path: root/pkgs/development/python-modules/sqlitedict/default.nix
blob: 38847309cee214c2c26d4707b665404d15f914cb (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, py
, pytest-benchmark
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "sqlitedict";
  version = "2.1.0";

  src = fetchFromGitHub {
    owner = "RaRe-Technologies";
    repo = "sqlitedict";
    rev = "refs/tags/v${version}";
    sha256 = "sha256-GfvvkQ6a75UBPn70IFOvjvL1MedSc4siiIjA3IsQnic=";
  };

  preCheck = ''
    mkdir tests/db
  '';

  nativeCheckInputs = [
    py
    pytest-benchmark
    pytestCheckHook
  ];

  pytestFlagsArray = [
    "--benchmark-disable"
  ];

  meta = with lib; {
    description = "Persistent, thread-safe dict";
    homepage = "https://github.com/RaRe-Technologies/sqlitedict";
    license = licenses.asl20;
    maintainers = [ maintainers.arnoldfarkas ];
  };
}