python3Packages.aiodmtpd: 1.2 -> 1.2.1

This commit is contained in:
Edmund Wu 2019-08-24 21:08:26 -04:00
parent 004e9b5b41
commit 7f7d8b1447
No known key found for this signature in database
GPG Key ID: 76AA3F9F2BD3E3A0

View File

@ -1,14 +1,17 @@
{ lib, isPy3k, fetchPypi, buildPythonPackage { lib, isPy3k, fetchFromGitHub, buildPythonPackage
, atpublic }: , atpublic }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiosmtpd"; pname = "aiosmtpd";
version = "1.2"; version = "1.2.1";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchPypi { # Release not published to Pypi
inherit pname version; src = fetchFromGitHub {
sha256 = "1xdfk741pjmz1cm8dsi4n5vq4517i175rm94696m3f7kcgk7xsmp"; owner = "aio-libs";
repo = pname;
rev = version;
sha256 = "14c30dm6jzxiblnsah53fdv68vqhxwvb9x0aq9bc4vcdas747vr7";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [