ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pytap2 / default.nix
blob3823f0270381a4e115c59ceb181cb8c00694760d
1 { lib
2 , buildPythonPackage
3 , nettools
4 , fetchFromGitHub
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "pytap2";
11   version = "2.2.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "johnthagen";
18     repo = "pytap2";
19     rev = "v${version}";
20     hash = "sha256-/t0Seg+8ZrOWOHBu9ftE1xkrnDeoYdHopXBvJTMGYRI=";
21   };
23   propagatedBuildInputs = [
24     nettools
25   ];
27   checkInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "pytap2"
33   ];
35   meta = with lib; {
36     description = "Object-oriented wrapper around the Linux Tun/Tap device";
37     homepage = "https://github.com/johnthagen/pytap2";
38     license = with licenses; [ mit ];
39     maintainers = with maintainers; [ fab ];
40     platforms = platforms.linux;
41   };