about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-01-14 18:30:53 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-01-14 18:30:53 +0100
commit67608598c99e943a747067ae987a4728eaefefa5 (patch)
treeddc5a248eba60ebc5a240fbc744bcd23b775ab71
parentf75c71636305e517058de35c7f2ede6813e52eb9 (diff)
downloadnixlib-67608598c99e943a747067ae987a4728eaefefa5.tar
nixlib-67608598c99e943a747067ae987a4728eaefefa5.tar.gz
nixlib-67608598c99e943a747067ae987a4728eaefefa5.tar.bz2
nixlib-67608598c99e943a747067ae987a4728eaefefa5.tar.lz
nixlib-67608598c99e943a747067ae987a4728eaefefa5.tar.xz
nixlib-67608598c99e943a747067ae987a4728eaefefa5.tar.zst
nixlib-67608598c99e943a747067ae987a4728eaefefa5.zip
python311Packages.aiosql: 9.1 -> 9.2
Diff: https://github.com/nackjicholson/aiosql/compare/refs/tags/9.1...9.2

Changelog: https://github.com/nackjicholson/aiosql/releases/tag/9.2
-rw-r--r--pkgs/development/python-modules/aiosql/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/aiosql/default.nix b/pkgs/development/python-modules/aiosql/default.nix
index fd9681a2d759..8236533154c8 100644
--- a/pkgs/development/python-modules/aiosql/default.nix
+++ b/pkgs/development/python-modules/aiosql/default.nix
@@ -13,7 +13,7 @@
 
 buildPythonPackage rec {
   pname = "aiosql";
-  version = "9.1";
+  version = "9.2";
   pyproject = true;
 
   disabled = pythonOlder "3.8";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
     owner = "nackjicholson";
     repo = "aiosql";
     rev = "refs/tags/${version}";
-    hash = "sha256-xcrNnp3ZfWLbz+/77N3R5x7N2n7nPcw0khqaIeHn0+Y=";
+    hash = "sha256-x8ndLVIYAmixH4Fc1DIC1CK8ChYIPZc3b5VFdpT7JO8=";
   };
 
   sphinxRoot = "docs/source";
@@ -48,7 +48,9 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
-  pythonImportsCheck = [ "aiosql" ];
+  pythonImportsCheck = [
+    "aiosql"
+  ];
 
   meta = with lib; {
     description = "Simple SQL in Python";