summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-04-09 12:29:12 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-04-09 14:58:03 +0200
commit9b6158e09257dffe2dd85b60c925fe0144bc1c91 (patch)
tree768de6be7683a047fe59cd19029ed76c4245ad5f
parentb6926131aa8d5de17b76aaa757cb13a6ae31bada (diff)
downloadnixpkgs-9b6158e09257dffe2dd85b60c925fe0144bc1c91.tar
nixpkgs-9b6158e09257dffe2dd85b60c925fe0144bc1c91.tar.gz
nixpkgs-9b6158e09257dffe2dd85b60c925fe0144bc1c91.tar.bz2
nixpkgs-9b6158e09257dffe2dd85b60c925fe0144bc1c91.tar.lz
nixpkgs-9b6158e09257dffe2dd85b60c925fe0144bc1c91.tar.xz
nixpkgs-9b6158e09257dffe2dd85b60c925fe0144bc1c91.tar.zst
nixpkgs-9b6158e09257dffe2dd85b60c925fe0144bc1c91.zip
python310Packages.aioambient: 2022.10.0 -> 2023.04.0
https://github.com/bachya/aioambient/releases/tag/2023.04.0
-rw-r--r--pkgs/development/python-modules/aioambient/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/aioambient/default.nix b/pkgs/development/python-modules/aioambient/default.nix
index b7fbf9af5dd..15d3d7ae561 100644
--- a/pkgs/development/python-modules/aioambient/default.nix
+++ b/pkgs/development/python-modules/aioambient/default.nix
@@ -15,7 +15,7 @@
 
 buildPythonPackage rec {
   pname = "aioambient";
-  version = "2022.10.0";
+  version = "2023.04.0";
   format = "pyproject";
 
   disabled = pythonOlder "3.9";
@@ -24,13 +24,12 @@ buildPythonPackage rec {
     owner = "bachya";
     repo = pname;
     rev = "refs/tags/${version}";
-    hash = "sha256-Oppi4J0TuLbqwVn1Hpa4xcU9c/I+YDP3E0VXwiP8a/w=";
+    hash = "sha256-ar2UGSlVukMD5EZsEn7TFfIOovaI+B3Ym+UeGo95oks=";
   };
 
   postPatch = ''
-    # https://github.com/bachya/aioambient/pull/97
     substituteInPlace pyproject.toml \
-      --replace 'websockets = ">=9.1,<11.0"' 'websockets = "*"'
+      --replace 'websockets = ">=11.0.1"' 'websockets = "*"'
   '';
 
   nativeBuildInputs = [