ssh-python: init at 1.1.1
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
cython,
|
||||
openssl,
|
||||
zlib,
|
||||
libssh,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ssh-python";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ParallelSSH";
|
||||
repo = "ssh-python";
|
||||
tag = version;
|
||||
hash = "sha256-kidz4uHT5C8TUROLGQUHihemYtwOoWZQNw7ElbwYKLM=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
nativeBuildInputs = [
|
||||
cython
|
||||
];
|
||||
buildInputs = [
|
||||
openssl
|
||||
zlib
|
||||
libssh
|
||||
];
|
||||
|
||||
env = {
|
||||
SYSTEM_LIBSSH = true;
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "ssh" ];
|
||||
|
||||
meta = {
|
||||
description = "Python bindings for libssh C library";
|
||||
homepage = "https://github.com/ParallelSSH/ssh-python";
|
||||
changelog = "https://github.com/ParallelSSH/ssh-python/blob/${version}/Changelog.rst";
|
||||
license = lib.licenses.lgpl21Only;
|
||||
maintainers = with lib.maintainers; [ infinidoge ];
|
||||
};
|
||||
}
|
||||
@@ -15516,6 +15516,8 @@ self: super: with self; {
|
||||
|
||||
sshtunnel = callPackage ../development/python-modules/sshtunnel { };
|
||||
|
||||
ssh-python = callPackage ../development/python-modules/ssh-python { };
|
||||
|
||||
sslib = callPackage ../development/python-modules/sslib { };
|
||||
|
||||
ssg = callPackage ../development/python-modules/ssg { };
|
||||
|
||||
Reference in New Issue
Block a user