From 1b564ea8485e39827295a247cc3a778100fc8e88 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 1 Mar 2023 00:20:25 +0100 Subject: [PATCH] python310Packages.psrpcore: 0.2.1 -> 0.2.2 Diff: https://github.com/jborean93/psrpcore/compare/refs/tags/v0.2.1...v0.2.2 Changelog: https://github.com/jborean93/psrpcore/blob/v0.2.2/CHANGELOG.md --- pkgs/development/python-modules/psrpcore/default.nix | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/psrpcore/default.nix b/pkgs/development/python-modules/psrpcore/default.nix index fc0517f0df84..8608c19c8dcd 100644 --- a/pkgs/development/python-modules/psrpcore/default.nix +++ b/pkgs/development/python-modules/psrpcore/default.nix @@ -3,14 +3,13 @@ , cryptography , fetchFromGitHub , pytestCheckHook -, pythonAtLeast , pythonOlder , xmldiff }: buildPythonPackage rec { pname = "psrpcore"; - version = "0.2.1"; + version = "0.2.2"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -19,7 +18,7 @@ buildPythonPackage rec { owner = "jborean93"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-KMSyqXKhNH+i9Y0Mx3DHCwJZOkl4Va2n0zu0TEitslU="; + hash = "sha256-6d5HQJEH/x+V0rpmQkprMlH1n151KyUF6d4tM9W5TFs="; }; propagatedBuildInputs = [ @@ -35,13 +34,6 @@ buildPythonPackage rec { "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";