mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
7c49511474
Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
23 lines
603 B
Nix
23 lines
603 B
Nix
{ buildPythonPackage, fetchPypi, lib
|
|
, authres, dnspython, dkimpy, publicsuffix2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "authheaders";
|
|
version = "0.15.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-90rOvu+CbHtammrMDZpPx7rIboIT2X/jL1GtfjpmuOk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ authres dnspython dkimpy publicsuffix2 ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for the generation of email authentication headers";
|
|
homepage = "https://github.com/ValiMail/authentication-headers";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|