diff --git a/pkgs/development/python-modules/pypsrp/default.nix b/pkgs/development/python-modules/pypsrp/default.nix new file mode 100644 index 000000000000..7246af07e382 --- /dev/null +++ b/pkgs/development/python-modules/pypsrp/default.nix @@ -0,0 +1,79 @@ +{ lib +, asyncssh +, buildPythonPackage +, cryptography +, fetchFromGitHub +, gssapi +, httpcore +, httpx +, krb5 +, psrpcore +, psutil +, pyspnego +, pytest-mock +, pytestCheckHook +, pythonOlder +, pyyaml +, requests +, requests-credssp +, xmldiff +}: + +buildPythonPackage rec { + pname = "pypsrp"; + version = "0.8.1"; + format = "pyproject"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "jborean93"; + repo = pname; + rev = "v${version}"; + hash = "sha256-Pwfc9e39sYPdcHN1cZtxxGEglEYzPp4yOYLD5/4SSiU="; + }; + + propagatedBuildInputs = [ + cryptography + httpcore + httpx + psrpcore + pyspnego + requests + ]; + + checkInputs = [ + pytest-mock + pytestCheckHook + pyyaml + xmldiff + ]; + + passthru.optional-dependencies = { + credssp = [ + requests-credssp + ]; + kerberos = [ + # pyspnego[kerberos] will have those two dependencies + gssapi + krb5 + ]; + named_pipe = [ + psutil + ]; + ssh = [ + asyncssh + ]; + }; + + pythonImportsCheck = [ + "pypsrp" + ]; + + meta = with lib; { + description = "PowerShell Remoting Protocol Client library"; + homepage = "https://github.com/jborean93/pypsrp"; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d553d1d7a806..6c746cc814da 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6453,6 +6453,8 @@ in { pyprecice = callPackage ../development/python-modules/pyprecice { }; + pypsrp = callPackage ../development/python-modules/pypsrp { }; + phpserialize = callPackage ../development/python-modules/phpserialize { }; phx-class-registry = callPackage ../development/python-modules/phx-class-registry { };