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