summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-02-27 02:14:05 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-03 23:56:32 +0100
commit067b77f8f97473f313f647c80854c63ea0e7e489 (patch)
treed038ea96124c5b6fd5d4bd5b81ac760806cd3ae0
parentdd5fc9c62aa3943aad2a9c4e44bf47a7ce2baf94 (diff)
downloadnixpkgs-067b77f8f97473f313f647c80854c63ea0e7e489.tar
nixpkgs-067b77f8f97473f313f647c80854c63ea0e7e489.tar.gz
nixpkgs-067b77f8f97473f313f647c80854c63ea0e7e489.tar.bz2
nixpkgs-067b77f8f97473f313f647c80854c63ea0e7e489.tar.lz
nixpkgs-067b77f8f97473f313f647c80854c63ea0e7e489.tar.xz
nixpkgs-067b77f8f97473f313f647c80854c63ea0e7e489.tar.zst
nixpkgs-067b77f8f97473f313f647c80854c63ea0e7e489.zip
python3Packages.apache-airflow: 2.5.0 -> 2.5.1
-rw-r--r--pkgs/development/python-modules/apache-airflow/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/apache-airflow/default.nix b/pkgs/development/python-modules/apache-airflow/default.nix
index 49cb9380055..0a7f8e7280f 100644
--- a/pkgs/development/python-modules/apache-airflow/default.nix
+++ b/pkgs/development/python-modules/apache-airflow/default.nix
@@ -77,7 +77,7 @@
 , enabledProviders ? []
 }:
 let
-  version = "2.5.0";
+  version = "2.5.1";
 
   airflow-src = fetchFromGitHub rec {
     owner = "apache";
@@ -86,7 +86,7 @@ let
     # Download using the git protocol rather than using tarballs, because the
     # GitHub archive tarballs don't appear to include tests
     forceFetchGit = true;
-    hash = "sha256-QWUXSG+RSHkF5kP1ZYtx+tHjO0n7hfya9CFA3lBhJHk=";
+    hash = "sha256-BuJfE6SONTNonUvacOAIdZe0QicdBtx7k186TJZpQOs=";
   };
 
   # airflow bundles a web interface, which is built using webpack by an undocumented shell script in airflow's source tree.