14 buildPythonPackage rec {
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
24 rev = "refs/tags/v${version}";
25 hash = "sha256-YThumRHMOTyhP6/EmNEew47v/X4Y1aYg1nvgZJz2XUg=";
28 build-system = [ setuptools ];
30 dependencies = [ cryptography ];
38 pythonImportsCheck = [ "psrpcore" ];
41 description = "Library for the PowerShell Remoting Protocol (PSRP)";
42 homepage = "https://github.com/jborean93/psrpcore";
43 changelog = "https://github.com/jborean93/psrpcore/blob/v${version}/CHANGELOG.md";
44 license = licenses.mit;
45 maintainers = with maintainers; [ fab ];
46 broken = stdenv.hostPlatform.isDarwin;