nixpkgs/pkgs/development/python-modules/netifaces/default.nix
2019-01-18 09:37:08 +01:00

22 lines
450 B
Nix

{ 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;
};
}