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:
parent
7062fa3d57
commit
36a1d1023a
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue