Merge pull request #15813 from elasticdog/pywinrm
pythonPackages.pywinrm: old rev -> 0.1.1
This commit is contained in:
commit
fd9cabe3a3
1 changed files with 8 additions and 8 deletions
|
@ -18946,23 +18946,23 @@ in modules // {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
pywinrm = buildPythonPackage (rec {
|
pywinrm = buildPythonPackage rec {
|
||||||
name = "pywinrm";
|
version = "0.1.1";
|
||||||
|
name = "pywinrm-${version}";
|
||||||
|
|
||||||
src = pkgs.fetchgit {
|
src = pkgs.fetchurl {
|
||||||
url = https://github.com/diyan/pywinrm.git;
|
url = "https://github.com/diyan/pywinrm/archive/v${version}.tar.gz";
|
||||||
rev = "c9ce62d500007561ab31a8d0a5d417e779fb69d9";
|
sha256 = "1pc0987f6q5sxcgm50a1k1xz2pk45ny9xxnyapaf60662rcavvfb";
|
||||||
sha256 = "0n0qlcgin2g5lpby07qbdlnpq5v2qc2yns9zc4zm5prwh2mhs5za";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ xmltodict isodate ];
|
propagatedBuildInputs = with self; [ isodate kerberos xmltodict ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://github.com/diyan/pywinrm/";
|
homepage = "http://github.com/diyan/pywinrm/";
|
||||||
description = "Python library for Windows Remote Management";
|
description = "Python library for Windows Remote Management";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
});
|
};
|
||||||
|
|
||||||
PyXAPI = stdenv.mkDerivation rec {
|
PyXAPI = stdenv.mkDerivation rec {
|
||||||
name = "PyXAPI-0.1";
|
name = "PyXAPI-0.1";
|
||||||
|
|
Loading…
Reference in a new issue