Merge pull request #171319 from fabaff/bump-pywinrm

python310Packages.pywinrm: 0.4.2 -> 0.4.3
main
Fabian Affolter 2 years ago committed by GitHub
commit 5c43b3de38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 40
      pkgs/development/python-modules/pywinrm/default.nix

@ -1,10 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy38
, pythonOlder
, kerberos
, mock
, pytest
, pytestCheckHook
, requests
, requests_ntlm
, six
@ -13,25 +13,41 @@
buildPythonPackage rec {
pname = "pywinrm";
version = "0.4.2";
disabled = isPy38;
version = "0.4.3";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "e7865ec5e46e7fedb859c656cfaba4fcf669de7c042b5a7d8a759544636bcfb7";
hash = "sha256-mVZ0v1rGSyViycVlQEcxCeUw02veEMJi1aUpYSGtVWU=";
};
checkInputs = [ mock pytest ];
propagatedBuildInputs = [ requests requests_ntlm six kerberos xmltodict ];
propagatedBuildInputs = [
requests
requests_ntlm
six
kerberos
xmltodict
];
checkInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [
"winrm"
];
pytestFlagsArray = [
"winrm/tests/"
];
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;
maintainers = with maintainers; [ elasticdog kamadorueda ];
};
}

Loading…
Cancel
Save