mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
pytun: init at 2.2.1
This commit is contained in:
parent
5fa0161ce6
commit
484e5f5152
|
@ -9114,6 +9114,29 @@ in {
|
|||
|
||||
};
|
||||
|
||||
pytun = buildPythonPackage rec {
|
||||
name = "pytun-${version}";
|
||||
version = "2.2.1";
|
||||
rev = "v${version}";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "montag451";
|
||||
repo = "pytun";
|
||||
sha256 = "1bxk0z0v8m0b01xg94f039j3bsclkshb7girvjqfzk5whbd2nryh";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/montag451/pytun;
|
||||
description = "Linux TUN/TAP wrapper for Python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ montag451 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
};
|
||||
|
||||
raven = buildPythonPackage rec {
|
||||
name = "raven-3.4.1";
|
||||
|
||||
|
|
Loading…
Reference in a new issue