mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
36a1d1023a
- Keberos is a dependency that you really want included in the pkg, this is also needed to run the test suite by default
38 lines
742 B
Nix
38 lines
742 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy38
|
|
, kerberos
|
|
, mock
|
|
, pytest
|
|
, requests
|
|
, requests_ntlm
|
|
, six
|
|
, xmltodict
|
|
}:
|
|
|
|
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 kerberos xmltodict ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for Windows Remote Management";
|
|
homepage = "https://github.com/diyan/pywinrm";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
elasticdog
|
|
kamadorueda
|
|
];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|