Merge pull request #218759 from fabaff/neo4j-bump

python310Packages.neo4j: 5.5.0 -> 5.6.0
This commit is contained in:
Fabian Affolter 2023-02-28 17:55:38 +01:00 committed by GitHub
commit 39c1061b7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 4 deletions

View File

@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "neo4j";
version = "5.5.0";
version = "5.6.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "neo4j";
repo = "neo4j-python-driver";
rev = "refs/tags/${version}";
hash = "sha256-K3ggXXDDdyPIcWL4eLo1HrpZB05tA9oYWpbOohcCF/w=";
hash = "sha256-OjGLV7xHyF8kB++juXTM40aUl4OK+xwhnFaLSyxHMo4=";
};
propagatedBuildInputs = [

View File

@ -3,6 +3,7 @@
, cryptography
, fetchFromGitHub
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, xmldiff
}:
@ -30,11 +31,17 @@ buildPythonPackage rec {
xmldiff
];
pythonImportsCheck = [
"psrpcore"
];
disabledTests = lib.optionals (pythonAtLeast "3.11") [
# https://github.com/jborean93/psrpcore/issues/22
"test_remote_stream_options"
"test_ps_flags"
];
meta = with lib; {
description = "Library for the PowerShell Remoting Protocol (PSRP)";
homepage = "https://github.com/jborean93/psrpcore";

View File

@ -29,7 +29,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "jborean93";
repo = pname;
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-Pwfc9e39sYPdcHN1cZtxxGEglEYzPp4yOYLD5/4SSiU=";
};
@ -70,9 +70,17 @@ buildPythonPackage rec {
"pypsrp"
];
disabledTests = [
# TypeError: Backend.load_rsa_private_numbers() missing 1 required...
"test_psrp_pshost_ui_mocked_methods"
"test_psrp_key_exchange_timeout"
"test_psrp_multiple_commands"
];
meta = with lib; {
description = "PowerShell Remoting Protocol Client library";
homepage = "https://github.com/jborean93/pypsrp";
changelog = "https://github.com/jborean93/pypsrp/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};