python310Packages.neo4j: 5.2.1 -> 5.3.0

Changelog: https://github.com/neo4j/neo4j-python-driver/releases/tag/5.3.0
This commit is contained in:
Fabian Affolter 2022-12-01 17:18:57 +01:00
parent 49c247fe59
commit 7df62d0fe6

View File

@ -3,11 +3,12 @@
, fetchFromGitHub
, pythonOlder
, pytz
, tomlkit
}:
buildPythonPackage rec {
pname = "neo4j";
version = "5.2.1";
version = "5.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -16,11 +17,12 @@ buildPythonPackage rec {
owner = "neo4j";
repo = "neo4j-python-driver";
rev = "refs/tags/${version}";
hash = "sha256-d4OkXj6mZjrdRG8UyxWeAh3rLywz2TUk2pZq+Ni1F3s=";
hash = "sha256-x67zkQTUhGS5LIVOW2F+OJxnUPwsH1/bX42RArNscUc=";
};
propagatedBuildInputs = [
pytz
tomlkit
];
# Missing dependencies
@ -32,7 +34,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Neo4j Bolt Driver for Python";
nn homepage = "https://github.com/neo4j/neo4j-python-driver";
homepage = "https://github.com/neo4j/neo4j-python-driver";
changelog = "https://github.com/neo4j/neo4j-python-driver/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];