12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
20 owner = "RaRe-Technologies";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-GfvvkQ6a75UBPn70IFOvjvL1MedSc4siiIjA3IsQnic=";
26 nativeBuildInputs = [ setuptools ];
38 pythonImportsCheck = [ "sqlitedict" ];
40 pytestFlagsArray = [ "--benchmark-disable" ];
43 description = "Persistent, thread-safe dict";
44 homepage = "https://github.com/RaRe-Technologies/sqlitedict";
45 changelog = "https://github.com/piskvorky/sqlitedict/blob/v${version}/CHANGELOG.md";
46 license = licenses.asl20;
47 maintainers = with maintainers; [ arnoldfarkas ];