summary refs log tree commit diff
path: root/pkgs/development/python-modules/netifaces/default.nix
blob: f7638b29a4c2078695b4fc77dbc95f1296db3b45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  version = "0.10.9";
  pname = "netifaces";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2dee9ffdd16292878336a58d04a20f0ffe95555465fee7c9bd23b3490ef2abf3";
  };

  meta = with lib; {
    homepage = "https://alastairs-place.net/projects/netifaces/";
    description = "Portable access to network interfaces from Python";
    license = licenses.mit;
  };

}