Series of 3 patches adding Nix expression for MySQL Workbench and
dependencies.
From 870819d5867fca0193a6c36314e6dec457911634 Mon Sep 17 00:00:00 2001
From: Karn Kallio <kkal...@eka.(none)>
Date: Thu, 16 Sep 2010 22:37:20 -0430
Subject: [PATCH 1/3] Add Nix expression for paramiko.
Paramiko is a Python SSH2 library.
---
pkgs/top-level/python-packages.nix | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 1b478a9..c3d8534 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -509,6 +509,37 @@ rec {
};
});
+ paramiko = buildPythonPackage {
+ name = "paramiko-1.7.6";
+
+ src = fetchurl {
+ url = "http://www.lag.net/paramiko/download/paramiko-1.7.6.tar.gz";
+ sha256 = "00jhzl3s9xdkbj32h1kq1swk8wpx9zky7qfda40n8mb204xjcn9h";
+ };
+
+ doCheck = false;
+
+ meta = {
+ homepage = "http://www.lag.net/paramiko/";
+ description = "SSH2 protocol for python";
+ license = "LGPL";
+
+ longDescription = ''
+ paramiko is a module for python 2.2 (or higher) that implements the
+ SSH2 protocol for secure (encrypted and authenticated) connections to
+ remote machines. unlike SSL (aka TLS), SSH2 protocol does not require
+ heirarchical certificates signed by a powerful central authority. you
+ may know SSH2 as the protocol that replaced telnet and rsh for secure
+ access to remote shells, but the protocol also includes the ability
+ to open arbitrary channels to remote services across the encrypted
+ tunnel -- this is how sftp works, for example. it is written
+ entirely in python (no C or platform-dependent code) and is released
+ under the GNU LGPL (lesser GPL). '';
+
+ platforms = python.meta.platforms;
+ };
+ };
+
pexpect = buildPythonPackage {
name = "pexpect-2.3";
--
1.7.2.3
_______________________________________________
nix-dev mailing list
[email protected]
https://mail.cs.uu.nl/mailman/listinfo/nix-dev