about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/netifaces/default.nix
blob: 07dc63c2181fe7a13781504c59f3ff68958d2662 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv
, 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;
  };

}