summary refs log tree commit diff
path: root/pkgs/development/python-modules/pywinrm/default.nix
blob: 3bdc5efaaa53a1e3a96e37b4cb48a9b44a522157 (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.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "799fc3e33fec8684443adf5778860388289102ea4fa1458f1bf307d167855573";
  };

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