depot/third_party/nixpkgs/pkgs/development/python-modules/sqlitedict/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

40 lines
750 B
Nix

{ 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}";
hash = "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 ];
};
}