pythonPackages.ifaddr: init at 0.1.4
This commit is contained in:
parent
1fd8625eae
commit
2854322cb8
36
pkgs/development/python-modules/ifaddr/default.nix
Normal file
36
pkgs/development/python-modules/ifaddr/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, ipaddress
|
||||
, python
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.1.4";
|
||||
pname = "ifaddr";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "cf2a8fbb578da2844d999a0a453825f660ed2d3fc47dcffc5f673dd8de4f0f8b";
|
||||
};
|
||||
|
||||
# ipaddress is provided in python stdlib > 3.3
|
||||
postPatch = if pythonOlder "3.4" then "" else ''
|
||||
sed -i "s/'ipaddress'//" setup.py
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ ipaddress ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} ifaddr/test_ifaddr.py
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/pydron/ifaddr;
|
||||
description = "Enumerates all IP addresses on all network adapters of the system";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
@ -2462,6 +2462,8 @@ in {
|
||||
|
||||
icalendar = callPackage ../development/python-modules/icalendar { };
|
||||
|
||||
ifaddr = callPackage ../development/python-modules/ifaddr { };
|
||||
|
||||
imageio = callPackage ../development/python-modules/imageio { };
|
||||
|
||||
imgaug = callPackage ../development/python-modules/imgaug { };
|
||||
|
Loading…
Reference in New Issue
Block a user