about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2024-03-03 17:28:33 -0800
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-12 04:30:06 +0100
commitd72a8444d5d94bbbf547f933c8f520a98b1d3fde (patch)
tree33e67b9f4a91d0de1f3d1b5079cadf8c2518436c /pkgs
parenta944ef32a6d32f7ca8f2b60bc8200f13e778ca58 (diff)
python311Packages.fastapi: 0.109.0 -> 0.110.0
Diff: https://github.com/tiangolo/fastapi/compare/refs/tags/0.109.0...0.110.0

Changelog: https://github.com/tiangolo/fastapi/releases/tag/0.110.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/fastapi/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/fastapi/default.nix b/pkgs/development/python-modules/fastapi/default.nix
index 74f816d9b8a64..67193638dd5a6 100644
--- a/pkgs/development/python-modules/fastapi/default.nix
+++ b/pkgs/development/python-modules/fastapi/default.nix
@@ -38,16 +38,16 @@
 
 buildPythonPackage rec {
   pname = "fastapi";
-  version = "0.109.0";
+  version = "0.110.0";
   pyproject = true;
 
   disabled = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "tiangolo";
-    repo = pname;
+    repo = "fastapi";
     rev = "refs/tags/${version}";
-    hash = "sha256-iZBc0tYGmhQuOL/pdthhBYYnZhe+wEttoinePNAIgEs=";
+    hash = "sha256-OXWJ1PKJSJGzYNT8HHXvxMxjUtI4K6edpI+Z5B3TvhI=";
   };
 
   nativeBuildInputs = [