2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-16 16:34:20 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytun";
|
2021-01-04 11:06:50 +00:00
|
|
|
version = "2.3.0";
|
2018-10-16 16:34:20 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "montag451";
|
|
|
|
repo = "pytun";
|
2021-01-04 11:06:50 +00:00
|
|
|
sha256 = "1cqq8aci38058fjh4a0xf21wac177fw576p2yjl2b8jd9rnsqbl5";
|
2018-10-16 16:34:20 +01:00
|
|
|
};
|
|
|
|
|
2021-01-04 11:06:50 +00:00
|
|
|
# Test directory contains examples, not tests.
|
2018-10-16 16:34:20 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/montag451/pytun";
|
2018-10-16 16:34:20 +01:00
|
|
|
description = "Linux TUN/TAP wrapper for Python";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ montag451 ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|