lol

python310Packages.mail-parser: remove ipaddress usage

authored by

Sandro Jäckel and committed by
Jonathan Ringer
92e26f14 c72e964d

+2 -3
+2 -3
pkgs/development/python-modules/mail-parser/default.nix
··· 1 - { lib, buildPythonPackage, python, pythonOlder, glibcLocales, fetchFromGitHub, ipaddress, six, simplejson }: 1 + { lib, buildPythonPackage, python, pythonOlder, glibcLocales, fetchFromGitHub, six, simplejson }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "mail-parser"; 5 5 version = "3.15.0"; 6 6 7 - # no tests in PyPI tarball 8 7 src = fetchFromGitHub { 9 8 owner = "SpamScope"; 10 9 repo = pname; ··· 15 14 LC_ALL = "en_US.utf-8"; 16 15 17 16 nativeBuildInputs = [ glibcLocales ]; 18 - propagatedBuildInputs = [ simplejson six ] ++ lib.optional (pythonOlder "3.3") ipaddress; 17 + propagatedBuildInputs = [ simplejson six ]; 19 18 20 19 # Taken from .travis.yml 21 20 checkPhase = ''