nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 41 lines 831 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 hatchling, 6 anyio, 7 pytestCheckHook, 8 trio, 9}: 10 11buildPythonPackage rec { 12 pname = "sqlite-anyio"; 13 version = "0.2.3"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "davidbrochart"; 18 repo = "sqlite-anyio"; 19 tag = "v${version}"; 20 hash = "sha256-cZyTpFmYD0l20Cmxl+Hwfh3oVkWvtXD45dMpcSwA2QE="; 21 }; 22 23 build-system = [ hatchling ]; 24 25 dependencies = [ anyio ]; 26 27 pythonImportsCheck = [ "sqlite_anyio" ]; 28 29 nativeCheckInputs = [ 30 pytestCheckHook 31 trio 32 ]; 33 34 meta = { 35 description = "Asynchronous client for SQLite using AnyIO"; 36 homepage = "https://github.com/davidbrochart/sqlite-anyio"; 37 changelog = "https://github.com/davidbrochart/sqlite-anyio/releases/tag/v${version}"; 38 license = lib.licenses.mit; 39 maintainers = [ ]; 40 }; 41}