summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-05-30 22:10:24 +0200
committerGitHub <noreply@github.com>2022-05-30 22:10:24 +0200
commit7c495114745a1bd9eaa9d2af67c2d76c6e105fa8 (patch)
tree2b1cf8914f556d8893c74f4cc24ce02a955eb7f6
parent63cbdf67ae20521d26e34aae181bc1eea3ec8588 (diff)
downloadnixpkgs-7c495114745a1bd9eaa9d2af67c2d76c6e105fa8.tar
nixpkgs-7c495114745a1bd9eaa9d2af67c2d76c6e105fa8.tar.gz
nixpkgs-7c495114745a1bd9eaa9d2af67c2d76c6e105fa8.tar.bz2
nixpkgs-7c495114745a1bd9eaa9d2af67c2d76c6e105fa8.tar.lz
nixpkgs-7c495114745a1bd9eaa9d2af67c2d76c6e105fa8.tar.xz
nixpkgs-7c495114745a1bd9eaa9d2af67c2d76c6e105fa8.tar.zst
nixpkgs-7c495114745a1bd9eaa9d2af67c2d76c6e105fa8.zip
python310Packages.authheaders: remove backport ipaddress (#175415)
Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
-rw-r--r--pkgs/development/python-modules/authheaders/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/authheaders/default.nix b/pkgs/development/python-modules/authheaders/default.nix
index 0d9c1a4093d..dfcb7527d98 100644
--- a/pkgs/development/python-modules/authheaders/default.nix
+++ b/pkgs/development/python-modules/authheaders/default.nix
@@ -1,5 +1,5 @@
-{ buildPythonPackage, fetchPypi, isPy27, lib
-, authres, dnspython, dkimpy, ipaddress, publicsuffix2
+{ buildPythonPackage, fetchPypi, lib
+, authres, dnspython, dkimpy, publicsuffix2
 }:
 
 buildPythonPackage rec {
@@ -11,12 +11,12 @@ buildPythonPackage rec {
     sha256 = "sha256-90rOvu+CbHtammrMDZpPx7rIboIT2X/jL1GtfjpmuOk=";
   };
 
-  propagatedBuildInputs = [ authres dnspython dkimpy publicsuffix2 ]
-                          ++ lib.optional isPy27 ipaddress;
+  propagatedBuildInputs = [ authres dnspython dkimpy publicsuffix2 ];
 
-  meta = {
+  meta = with lib; {
     description = "Python library for the generation of email authentication headers";
     homepage = "https://github.com/ValiMail/authentication-headers";
-    license = lib.licenses.mit;
+    license = licenses.mit;
+    maintainers = with maintainers; [ ];
   };
 }