Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / anysqlite / default.nix
blobbf6cb41a791643bfb8d2bb0c75e7fef5df35bb99
1 { lib
2 , anyio
3 , buildPythonPackage
4 , fetchFromGitHub
5 , hatch-fancy-pypi-readme
6 , hatchling
7 , pytestCheckHook
8 , pythonOlder
9 , trio
12 buildPythonPackage rec {
13   pname = "anysqlite";
14   version = "0.0.5";
15   pyproject = true;
17   disabled = pythonOlder "3.8";
19   src = fetchFromGitHub {
20     owner = "karpetrosyan";
21     repo = "anysqlite";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-6kNN6kjkMHVNneMq/8zQxqMIXUxH/+eWLX8XhoHqFRU=";
24   };
26   nativeBuildInputs = [
27     hatch-fancy-pypi-readme
28     hatchling
29   ];
31   propagatedBuildInputs = [
32     anyio
33   ];
35   nativeCheckInputs = [
36     pytestCheckHook
37     trio
38   ];
40   pythonImportsCheck = [
41     "anysqlite"
42   ];
44   meta = with lib; {
45     description = "Sqlite3 for asyncio and trio";
46     homepage = "https://github.com/karpetrosyan/anysqlite";
47     changelog = "https://github.com/karpetrosyan/anysqlite/blob/${version}/CHANGELOG.md";
48     license = licenses.bsd3;
49     maintainers = with maintainers; [ fab ];
50   };