ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / ifaddr / default.nix
blob319b080c34724ef5e7ce4490040ba27e42b8554f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   version = "0.2.0";
9   pname = "ifaddr";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-zAy/yqv3ZdRFlYJfuWqZuxLHlxa3O0QzDqOO4rDErtQ=";
14   };
16   checkInputs = [
17     pytestCheckHook
18   ];
20   pythonImportsCheck = [ "ifaddr" ];
22   meta = with lib; {
23     homepage = "https://github.com/pydron/ifaddr";
24     description = "Enumerates all IP addresses on all network adapters of the system";
25     license = licenses.mit;
26     maintainers = [ maintainers.costrouc ];
27   };