blob: 5883df4587cbac13ecc011ebd6a89449595b7d59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
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; [ ];
};
}
|