depot/third_party/nixpkgs/pkgs/development/python-modules/sqlite-anyio/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

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