nixpkgs/pkgs/development/python-modules/netifaces/default.nix

22 lines
450 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
2018-11-04 11:35:07 +01:00
version = "0.10.7";
pname = "netifaces";
src = fetchPypi {
inherit pname version;
2018-11-04 11:35:07 +01:00
sha256 = "bd590fcb75421537d4149825e1e63cca225fd47dad861710c46bd1cb329d8cbd";
};
meta = with stdenv.lib; {
homepage = https://alastairs-place.net/projects/netifaces/;
description = "Portable access to network interfaces from Python";
license = licenses.mit;
};
}