about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-12-16 19:14:29 +0100
committerAlyssa Ross <hi@alyssa.is>2020-01-13 00:32:50 +0000
commit92c3ea567eadad5eb8b84011a5330b9fe3a71e0a (patch)
treec6ab9c4969f34f8735861e8822e5168be75f6206 /nixpkgs/pkgs/development/python-modules
parenta39e8e4addf9a348a0d0c1b3dc0db0a82d306623 (diff)
downloadnixlib-92c3ea567eadad5eb8b84011a5330b9fe3a71e0a.tar
nixlib-92c3ea567eadad5eb8b84011a5330b9fe3a71e0a.tar.gz
nixlib-92c3ea567eadad5eb8b84011a5330b9fe3a71e0a.tar.bz2
nixlib-92c3ea567eadad5eb8b84011a5330b9fe3a71e0a.tar.lz
nixlib-92c3ea567eadad5eb8b84011a5330b9fe3a71e0a.tar.xz
nixlib-92c3ea567eadad5eb8b84011a5330b9fe3a71e0a.tar.zst
nixlib-92c3ea567eadad5eb8b84011a5330b9fe3a71e0a.zip
python-authheaders: initial version 0.12.1
This package is a dependency of GNU Mailman 3.3.x.
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules')
-rw-r--r--nixpkgs/pkgs/development/python-modules/authheaders/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/authheaders/default.nix b/nixpkgs/pkgs/development/python-modules/authheaders/default.nix
new file mode 100644
index 000000000000..09ed34ed9151
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/authheaders/default.nix
@@ -0,0 +1,19 @@
+{ buildPythonPackage, fetchPypi, lib, authres, dnspython, dkimpy, publicsuffix }:
+
+buildPythonPackage rec {
+  pname = "authheaders";
+  version = "0.12.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0hf1p6ws3jma608pmcb5qsl58xg33wz2s51qqzi9zix0llcnyc97";
+  };
+
+  propagatedBuildInputs = [ authres dnspython dkimpy publicsuffix ];
+
+  meta = {
+    description = "Python library for the generation of email authentication headers";
+    homepage = https://github.com/ValiMail/authentication-headers;
+    license = lib.licenses.mit;
+  };
+}