blob: db2ab9c665c09c848501e547d100540e674cc42e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ stdenv, buildPythonPackage, fetchPypi
, paramiko
}:
buildPythonPackage rec {
pname = "sshtunnel";
version = "0.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "0xhdqj8ych976xi847k4m7llnvlnwbn9n0iik97adbyk3cdf96pj";
};
propagatedBuildInputs = [ paramiko ];
doCheck = false;
meta = with stdenv.lib; {
description = "Pure python SSH tunnels";
homepage = https://github.com/pahaz/sshtunnel;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|