Skip to content

Commit

Permalink
python3Packages.aiodmtpd: 1.2 -> 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eadwu committed Aug 25, 2019
1 parent 004e9b5 commit 7f7d8b1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pkgs/development/python-modules/aiosmtpd/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{ lib, isPy3k, fetchPypi, buildPythonPackage
{ lib, isPy3k, fetchFromGitHub, buildPythonPackage
, atpublic }:

buildPythonPackage rec {
pname = "aiosmtpd";
version = "1.2";
version = "1.2.1";
disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "1xdfk741pjmz1cm8dsi4n5vq4517i175rm94696m3f7kcgk7xsmp";
# Release not published to Pypi
src = fetchFromGitHub {
owner = "aio-libs";
repo = pname;
rev = version;
sha256 = "14c30dm6jzxiblnsah53fdv68vqhxwvb9x0aq9bc4vcdas747vr7";
};

propagatedBuildInputs = [
Expand Down

0 comments on commit 7f7d8b1

Please sign in to comment.