1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 15:41:40 +00:00

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