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