nixpkgs/pkgs/development/python-modules/authres/default.nix
R. RyanTM 71416f0d02 python36Packages.authres: 1.1.0 -> 1.1.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-authres/versions
2018-11-09 02:04:09 -08:00

29 lines
799 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, python }:
buildPythonPackage rec {
pname = "authres";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "0bxclx021zn4hhrpaw5fl61bhnf17yqjd0pvwxqfqwdkxdjpx37b";
};
checkPhase = ''
# run doctests
${python.interpreter} -m authres
'';
meta = with stdenv.lib; {
description = "Email Authentication-Results Headers generation and parsing for Python/Python3";
longDescription = ''
Python module that implements various internet RFC's: 5451/7001/7601
Authentication-Results Headers generation and parsing for
Python/Python3.
'';
homepage = https://launchpad.net/authentication-results-python;
license = licenses.bsd3;
maintainers = with maintainers; [ leenaars ];
};
}