Merge pull request #218759 from fabaff/neo4j-bump
python310Packages.neo4j: 5.5.0 -> 5.6.0
This commit is contained in:
commit
39c1061b7e
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "neo4j";
|
pname = "neo4j";
|
||||||
version = "5.5.0";
|
version = "5.6.0";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||||||
owner = "neo4j";
|
owner = "neo4j";
|
||||||
repo = "neo4j-python-driver";
|
repo = "neo4j-python-driver";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-K3ggXXDDdyPIcWL4eLo1HrpZB05tA9oYWpbOohcCF/w=";
|
hash = "sha256-OjGLV7xHyF8kB++juXTM40aUl4OK+xwhnFaLSyxHMo4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
, cryptography
|
, cryptography
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, pythonAtLeast
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, xmldiff
|
, xmldiff
|
||||||
}:
|
}:
|
||||||
@ -30,11 +31,17 @@ buildPythonPackage rec {
|
|||||||
xmldiff
|
xmldiff
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
"psrpcore"
|
"psrpcore"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
disabledTests = lib.optionals (pythonAtLeast "3.11") [
|
||||||
|
# https://github.com/jborean93/psrpcore/issues/22
|
||||||
|
"test_remote_stream_options"
|
||||||
|
"test_ps_flags"
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Library for the PowerShell Remoting Protocol (PSRP)";
|
description = "Library for the PowerShell Remoting Protocol (PSRP)";
|
||||||
homepage = "https://github.com/jborean93/psrpcore";
|
homepage = "https://github.com/jborean93/psrpcore";
|
||||||
|
@ -29,7 +29,7 @@ buildPythonPackage rec {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jborean93";
|
owner = "jborean93";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-Pwfc9e39sYPdcHN1cZtxxGEglEYzPp4yOYLD5/4SSiU=";
|
hash = "sha256-Pwfc9e39sYPdcHN1cZtxxGEglEYzPp4yOYLD5/4SSiU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -70,9 +70,17 @@ buildPythonPackage rec {
|
|||||||
"pypsrp"
|
"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; {
|
meta = with lib; {
|
||||||
description = "PowerShell Remoting Protocol Client library";
|
description = "PowerShell Remoting Protocol Client library";
|
||||||
homepage = "https://github.com/jborean93/pypsrp";
|
homepage = "https://github.com/jborean93/pypsrp";
|
||||||
|
changelog = "https://github.com/jborean93/pypsrp/blob/v${version}/CHANGELOG.md";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user