nixpkgs/pkgs/development/python-modules/netifaces/default.nix
2018-12-03 16:50:32 +01:00

22 lines
450 B
Nix

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