Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 564 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchFromGitHub 4}: 5 6buildPythonPackage rec { 7 pname = "pytun"; 8 version = "2.2.1"; 9 10 src = fetchFromGitHub { 11 rev = "v${version}"; 12 owner = "montag451"; 13 repo = "pytun"; 14 sha256 = "1bxk0z0v8m0b01xg94f039j3bsclkshb7girvjqfzk5whbd2nryh"; 15 }; 16 17 doCheck = false; 18 19 meta = with stdenv.lib; { 20 homepage = "https://github.com/montag451/pytun"; 21 description = "Linux TUN/TAP wrapper for Python"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ montag451 ]; 24 platforms = platforms.linux; 25 }; 26 27}