nixpkgs/pkgs/development/python-modules/sqlitedict/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

41 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 ];
};
}