about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pywinrm/default.nix
blob: 9ed44c83b602380bee150a1a7e4ec11b0d8cc083 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, buildPythonPackage
, fetchPypi
, mock
, pytest
, requests
, requests_ntlm
, six
, xmltodict
}:

buildPythonPackage rec {
  pname = "pywinrm";
  version = "0.4.1";

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

  checkInputs = [ mock pytest ];
  propagatedBuildInputs = [ requests requests_ntlm six xmltodict ];

  meta = with lib; {
    description = "Python library for Windows Remote Management";
    homepage = https://github.com/diyan/pywinrm/;
    license = licenses.mit;
    maintainers = with maintainers; [ elasticdog ];
    platforms = platforms.all;
  };
}