nixpkgs/pkgs/development/python-modules/pywinrm/default.nix

32 lines
663 B
Nix
Raw Normal View History

2017-05-26 22:56:48 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, mock
, pytest
, requests
, requests_ntlm
, six
, xmltodict
}:
buildPythonPackage rec {
pname = "pywinrm";
2017-12-30 11:26:45 +00:00
version = "0.3.0";
2017-05-26 22:56:48 +00:00
src = fetchPypi {
inherit pname version;
2017-12-30 11:26:45 +00:00
sha256 = "799fc3e33fec8684443adf5778860388289102ea4fa1458f1bf307d167855573";
2017-05-26 22:56:48 +00:00
};
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/;
2017-05-26 22:56:48 +00:00
license = licenses.mit;
maintainers = with maintainers; [ elasticdog ];
platforms = platforms.all;
};
}