From 90ce50f6b99ab02a4849388f2739ad48c8fcf9a0 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Mon, 9 Mar 2026 09:55:21 -0700 Subject: [PATCH] python3Packages.cassandra-driver: migrate to github:apache/cassandra-python-driver --- .../python-modules/cassandra-driver/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/cassandra-driver/default.nix b/pkgs/development/python-modules/cassandra-driver/default.nix index 8079617981fb..2fe3b79c3b57 100644 --- a/pkgs/development/python-modules/cassandra-driver/default.nix +++ b/pkgs/development/python-modules/cassandra-driver/default.nix @@ -28,8 +28,8 @@ buildPythonPackage (finalAttrs: { pyproject = true; src = fetchFromGitHub { - owner = "datastax"; - repo = "python-driver"; + owner = "apache"; + repo = "cassandra-python-driver"; tag = finalAttrs.version; hash = "sha256-VynrUc7gqAi061FU2ln4B1fK4NaSUcjSgH1i1JQpmvk="; }; @@ -120,8 +120,8 @@ buildPythonPackage (finalAttrs: { meta = { description = "Python client driver for Apache Cassandra"; - homepage = "http://datastax.github.io/python-driver"; - changelog = "https://github.com/datastax/python-driver/blob/${finalAttrs.src.tag}/CHANGELOG.rst"; + homepage = "https://github.com/apache/cassandra-python-driver"; + changelog = "https://github.com/apache/cassandra-python-driver/blob/${finalAttrs.src.tag}/CHANGELOG.rst"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ ris ]; };