Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pytun / default.nix
blob3437c0fbe7a5634eadc05674baf3bbd83da4ca85
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 }:
6 buildPythonPackage rec {
7   pname = "pytun";
8   version = "2.3.0";
10   src = fetchFromGitHub {
11     rev = "v${version}";
12     owner = "montag451";
13     repo = "pytun";
14     sha256 = "1cqq8aci38058fjh4a0xf21wac177fw576p2yjl2b8jd9rnsqbl5";
15   };
17   # Test directory contains examples, not tests.
18   doCheck = false;
20   meta = with lib; {
21     homepage = "https://github.com/montag451/pytun";
22     description = "Linux TUN/TAP wrapper for Python";
23     license = licenses.mit;
24     maintainers = with maintainers; [ montag451 ];
25     platforms = platforms.linux;
26   };