nixpkgs/pkgs/development/python-modules/sqlitedict/default.nix

27 lines
597 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub, pytest }:
buildPythonPackage rec {
pname = "sqlitedict";
version = "1.6.0";
2020-08-25 02:07:09 +00:00
src = fetchFromGitHub {
owner = "RaRe-Technologies";
repo = "sqlitedict";
rev = version;
sha256 = "1yq94lgpny9qcfbsl39npjvrsjfggi3lj2kpzcsxcfdfgxag6m2m";
};
2020-08-25 02:07:09 +00:00
checkInputs = [ pytest ];
2020-08-25 02:07:09 +00:00
checkPhase = ''
pytest tests
'';
2020-08-25 02:07:09 +00:00
meta = with lib; {
description = "Persistent, thread-safe dict";
homepage = "https://github.com/RaRe-Technologies/sqlitedict";
license = licenses.asl20;
maintainers = [ maintainers.arnoldfarkas ];
};
}