mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
48 lines
897 B
Nix
48 lines
897 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
cython,
|
|
openssl,
|
|
zlib,
|
|
libssh,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ssh-python";
|
|
version = "1.2.0.post1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ParallelSSH";
|
|
repo = "ssh-python";
|
|
tag = version;
|
|
hash = "sha256-ix6UzyC/mFDVOvfJujwppijmsTrwNtuDAkmikrKKc2o=";
|
|
};
|
|
|
|
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/${src.tag}/Changelog.rst";
|
|
license = lib.licenses.lgpl21Only;
|
|
maintainers = with lib.maintainers; [ infinidoge ];
|
|
};
|
|
}
|