71416f0d02
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
29 lines
799 B
Nix
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 ];
|
|
};
|
|
}
|