Skip to content

Commit

Permalink
pythonPackages.pywinrm: missing dependency
Browse files Browse the repository at this point in the history
- Keberos is a dependency that you really want included in the pkg,
  this is also needed to run the test suite by default
  • Loading branch information
kamadorueda authored and jonringer committed Feb 23, 2020
1 parent 7062fa3 commit 36a1d10
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pkgs/development/python-modules/pywinrm/default.nix
@@ -1,6 +1,8 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy38
, kerberos
, mock
, pytest
, requests
Expand All @@ -12,20 +14,24 @@
buildPythonPackage rec {
pname = "pywinrm";
version = "0.4.1";
disabled = isPy38;

src = fetchPypi {
inherit pname version;
sha256 = "4ede5c6c85b53780ad0dbf9abef2fa2ea58f44c82256a84a63eae5f1205cea81";
};

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;
};
}

0 comments on commit 36a1d10

Please sign in to comment.