diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2026-01-18 00:53:38 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-18 00:53:38 +0000 |
| commit | 38294447d9248846c1497fd31d4f66489b4448a1 (patch) | |
| tree | 454c2b195ca403128eb26831ce423f304c4b6b11 | |
| parent | 7e4adc176dd4d540c706ae3b6c662eb4fc85d827 (diff) | |
| parent | d385537236396bfb7eed1d6c4a14a1a3d25b25d0 (diff) | |
python3Packages.neo4j: 6.0.3 -> 6.1.0 (#481148)
| -rw-r--r-- | pkgs/development/python-modules/neo4j/default.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/neo4j/default.nix b/pkgs/development/python-modules/neo4j/default.nix index 8296ca891374..8817d524e4ee 100644 --- a/pkgs/development/python-modules/neo4j/default.nix +++ b/pkgs/development/python-modules/neo4j/default.nix @@ -10,22 +10,22 @@ setuptools, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "neo4j"; - version = "6.0.3"; + version = "6.1.0"; pyproject = true; src = fetchFromGitHub { owner = "neo4j"; repo = "neo4j-python-driver"; - tag = version; - hash = "sha256-KhPxwj5MmhNpd4d64dN0d1wOP6nAac/DsRQ8zoT03/A="; + tag = finalAttrs.version; + hash = "sha256-1Ef9SMJid0q+tI8hceriNu2vsLAyW4Jxt53ifcmi5VA="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace-fail "setuptools ==" "setuptools >=" \ - --replace-fail 'dynamic = ["version"]' 'version = "${version}"' + --replace-fail 'dynamic = ["version"]' 'version = "${finalAttrs.version}"' ''; build-system = [ setuptools ]; @@ -49,8 +49,8 @@ buildPythonPackage rec { meta = { description = "Neo4j Bolt Driver for Python"; homepage = "https://github.com/neo4j/neo4j-python-driver"; - changelog = "https://github.com/neo4j/neo4j-python-driver/releases/tag/${src.tag}"; + changelog = "https://github.com/neo4j/neo4j-python-driver/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; -} +}) |
