1{ lib 2, buildPythonPackage 3, fetchPypi 4, mock 5, pytest 6, requests 7, requests_ntlm 8, six 9, xmltodict 10}: 11 12buildPythonPackage rec { 13 pname = "pywinrm"; 14 version = "0.3.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "799fc3e33fec8684443adf5778860388289102ea4fa1458f1bf307d167855573"; 19 }; 20 21 checkInputs = [ mock pytest ]; 22 propagatedBuildInputs = [ requests requests_ntlm six xmltodict ]; 23 24 meta = with lib; { 25 description = "Python library for Windows Remote Management"; 26 homepage = https://github.com/diyan/pywinrm/; 27 license = licenses.mit; 28 maintainers = with maintainers; [ elasticdog ]; 29 platforms = platforms.all; 30 }; 31}