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