f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
44 lines
913 B
Nix
44 lines
913 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
hatchling,
|
|
anyio,
|
|
pytestCheckHook,
|
|
trio,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sqlite-anyio";
|
|
version = "0.2.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "davidbrochart";
|
|
repo = "sqlite-anyio";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-cZyTpFmYD0l20Cmxl+Hwfh3oVkWvtXD45dMpcSwA2QE=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [ anyio ];
|
|
|
|
pythonImportsCheck = [ "sqlite_anyio" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
trio
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Asynchronous client for SQLite using AnyIO";
|
|
homepage = "https://github.com/davidbrochart/sqlite-anyio";
|
|
changelog = "https://github.com/davidbrochart/sqlite-anyio/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|