Merge pull request #307181 from fabaff/neo4j-bump

python311Packages.neo4j: 5.19.0 -> 5.20.0
This commit is contained in:
Nick Cao 2024-04-27 10:32:40 -04:00 committed by GitHub
commit 4c4c2c6347
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 22 deletions

View File

@ -1,13 +1,14 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, numpy fetchFromGitHub,
, pandas numpy,
, pyarrow pandas,
, pythonOlder pyarrow,
, pytz pythonOlder,
, setuptools pytz,
, tomlkit setuptools,
tomlkit,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -32,9 +33,7 @@ buildPythonPackage rec {
--replace-fail '#readme = "README.rst"' 'version = "${version}"' --replace-fail '#readme = "README.rst"' 'version = "${version}"'
''; '';
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
pytz pytz
@ -42,24 +41,18 @@ buildPythonPackage rec {
]; ];
passthru.optional-dependencies = { passthru.optional-dependencies = {
numpy = [ numpy = [ numpy ];
numpy
];
pandas = [ pandas = [
numpy numpy
pandas pandas
]; ];
pyarrow = [ pyarrow = [ pyarrow ];
pyarrow
];
}; };
# Missing dependencies # Missing dependencies
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "neo4j" ];
"neo4j"
];
meta = with lib; { meta = with lib; {
description = "Neo4j Bolt Driver for Python"; description = "Neo4j Bolt Driver for Python";