pythonPackages.pywinrm: missing dependency

- Keberos is a dependency that you really want included in the pkg,
  this is also needed to run the test suite by default
This commit is contained in:
Kevin Amado 2020-01-29 12:37:58 -05:00 committed by Jon
parent 7062fa3d57
commit 36a1d1023a

View File

@ -1,6 +1,8 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy38
, kerberos
, mock , mock
, pytest , pytest
, requests , requests
@ -12,6 +14,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pywinrm"; pname = "pywinrm";
version = "0.4.1"; version = "0.4.1";
disabled = isPy38;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
@ -19,13 +22,16 @@ buildPythonPackage rec {
}; };
checkInputs = [ mock pytest ]; checkInputs = [ mock pytest ];
propagatedBuildInputs = [ requests requests_ntlm six xmltodict ]; propagatedBuildInputs = [ requests requests_ntlm six kerberos xmltodict ];
meta = with lib; { meta = with lib; {
description = "Python library for Windows Remote Management"; description = "Python library for Windows Remote Management";
homepage = https://github.com/diyan/pywinrm/; homepage = "https://github.com/diyan/pywinrm";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ elasticdog ]; maintainers = with maintainers; [
elasticdog
kamadorueda
];
platforms = platforms.all; platforms = platforms.all;
}; };
} }