Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.aiosmtpd: 1.2.1 -> 1.4.2

Required for mailman update to 3.3.4

+4 -4
+4 -4
pkgs/development/python-modules/aiosmtpd/default.nix
··· 1 1 { lib, isPy3k, fetchFromGitHub, buildPythonPackage 2 - , atpublic }: 2 + , attrs, atpublic }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "aiosmtpd"; 6 - version = "1.2.1"; 6 + version = "1.4.2"; 7 7 disabled = !isPy3k; 8 8 9 9 # Release not published to Pypi ··· 11 11 owner = "aio-libs"; 12 12 repo = pname; 13 13 rev = version; 14 - sha256 = "14c30dm6jzxiblnsah53fdv68vqhxwvb9x0aq9bc4vcdas747vr7"; 14 + sha256 = "0hbpyns1j1fpvpj7gyb8cz359j7l4hzfqbig74xp4xih59sih0wj"; 15 15 }; 16 16 17 17 propagatedBuildInputs = [ 18 - atpublic 18 + atpublic attrs 19 19 ]; 20 20 21 21 # Tests need network access