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

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

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

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

}