mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-09 05:57:04 +01:00
https://github.com/ParallelSSH/parallel-ssh/blob/2.16.0.post1/Changelog.rst This commit was automatically generated using update-python-libraries.
47 lines
929 B
Nix
47 lines
929 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
gevent,
|
|
ssh-python,
|
|
ssh2-python,
|
|
unittestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "parallel-ssh";
|
|
version = "2.16.0.post1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ParallelSSH";
|
|
repo = "parallel-ssh";
|
|
tag = version;
|
|
hash = "sha256-jwigzgW94pYkSfYbmyIg776DcML6zH5nYKK1aFs68j8=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
gevent
|
|
ssh-python
|
|
ssh2-python
|
|
];
|
|
|
|
pythonImportsCheck = [ "pssh" ];
|
|
|
|
nativeCheckInputs = [
|
|
unittestCheckHook
|
|
];
|
|
|
|
meta = {
|
|
description = "Asynchronous parallel SSH client library";
|
|
homepage = "https://github.com/ParallelSSH/parallel-ssh";
|
|
changelog = "https://github.com/ParallelSSH/parallel-ssh/blob/${src.tag}/Changelog.rst";
|
|
license = lib.licenses.lgpl21Only;
|
|
maintainers = with lib.maintainers; [ infinidoge ];
|
|
};
|
|
}
|