about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/aiosqlite
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/aiosqlite')
-rw-r--r--nixpkgs/pkgs/development/python-modules/aiosqlite/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/aiosqlite/default.nix b/nixpkgs/pkgs/development/python-modules/aiosqlite/default.nix
new file mode 100644
index 000000000000..022e34e23c1b
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/aiosqlite/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, aiounittest
+, buildPythonPackage
+, fetchPypi
+, isPy27
+, pytestCheckHook
+, typing-extensions
+}:
+
+buildPythonPackage rec {
+  pname = "aiosqlite";
+  version = "0.17.0";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "sha256-8OaswkvEhkFJJnrIL7Rt+zvkRV+Z/iHfgmCcxua67lE=";
+  };
+
+  checkInputs = [
+    aiounittest
+    pytestCheckHook
+    typing-extensions
+  ];
+
+  # tests are not pick-up automatically by the hook
+  pytestFlagsArray = [ "aiosqlite/tests/*.py" ];
+
+  pythonImportsCheck = [ "aiosqlite" ];
+
+  meta = with lib; {
+    description = "Asyncio bridge to the standard sqlite3 module";
+    homepage = "https://github.com/jreese/aiosqlite";
+    license = licenses.mit;
+    maintainers = [ maintainers.costrouc ];
+  };
+}