diff options
author | Stefan Siegl <stesie@brokenpipe.de> | 2018-09-10 18:33:48 +0200 |
---|---|---|
committer | Stefan Siegl <stesie@brokenpipe.de> | 2018-09-10 18:33:48 +0200 |
commit | b6714f59cce26ddc831ca4a213e8f56476184fb1 (patch) | |
tree | 48abe892298c6d9e77d48e9de7d848af9beee71d /pkgs/development/python-modules/sshtunnel |
initial commit
Diffstat (limited to 'pkgs/development/python-modules/sshtunnel')
-rw-r--r-- | pkgs/development/python-modules/sshtunnel/default.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sshtunnel/default.nix b/pkgs/development/python-modules/sshtunnel/default.nix new file mode 100644 index 0000000..db2ab9c --- /dev/null +++ b/pkgs/development/python-modules/sshtunnel/default.nix @@ -0,0 +1,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 ]; + }; +} |