3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #15813 from elasticdog/pywinrm

pythonPackages.pywinrm: old rev -> 0.1.1
This commit is contained in:
Frederik Rietdijk 2016-05-29 22:43:37 +02:00
commit fd9cabe3a3

View file

@ -18946,23 +18946,23 @@ in modules // {
};
};
pywinrm = buildPythonPackage (rec {
name = "pywinrm";
pywinrm = buildPythonPackage rec {
version = "0.1.1";
name = "pywinrm-${version}";
src = pkgs.fetchgit {
url = https://github.com/diyan/pywinrm.git;
rev = "c9ce62d500007561ab31a8d0a5d417e779fb69d9";
sha256 = "0n0qlcgin2g5lpby07qbdlnpq5v2qc2yns9zc4zm5prwh2mhs5za";
src = pkgs.fetchurl {
url = "https://github.com/diyan/pywinrm/archive/v${version}.tar.gz";
sha256 = "1pc0987f6q5sxcgm50a1k1xz2pk45ny9xxnyapaf60662rcavvfb";
};
propagatedBuildInputs = with self; [ xmltodict isodate ];
propagatedBuildInputs = with self; [ isodate kerberos xmltodict ];
meta = {
homepage = "http://github.com/diyan/pywinrm/";
description = "Python library for Windows Remote Management";
license = licenses.mit;
};
});
};
PyXAPI = stdenv.mkDerivation rec {
name = "PyXAPI-0.1";