Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
python.pkgs.aiodns: 1.2.0 -> 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Mar 19, 2019
1 parent 99cd4a1 commit fc172b3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/development/python-modules/aiodns/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{ stdenv, buildPythonPackage, fetchPypi
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder
, isPy27, isPyPy, python, pycares, typing, trollius }:

buildPythonPackage rec {
pname = "aiodns";
version = "1.2.0";
version = "2.0.0";

src = fetchPypi {
inherit pname version;
sha256 = "d67e14b32176bcf3ff79b5d47c466011ce4adeadfa264f7949da1377332a0449";
sha256 = "815fdef4607474295d68da46978a54481dd1e7be153c7d60f9e72773cd38d77d";
};

propagatedBuildInputs = with stdenv.lib; [ pycares typing ]
propagatedBuildInputs = with stdenv.lib; [ pycares ]
++ optional (pythonOlder "3.7") typing
++ optional (isPy27 || isPyPy) trollius;

checkPhase = ''
Expand Down

0 comments on commit fc172b3

Please sign in to comment.