Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ed5bee941570
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5e888d1854dc
Choose a head ref
  • 3 commits
  • 8 files changed
  • 2 contributors

Commits on Mar 19, 2019

  1. python.pkgs.asyncio: remove

    > This version is only relevant for Python 3.3,
    > which does not include asyncio in its stdlib.
    We don't ship 3.3 anymore.
    Robert Schütz committed Mar 19, 2019
    Copy the full SHA
    a4a6177 View commit details
  2. python.pkgs.aioeventlet: 0.5.1 -> 0.5.2

    Robert Schütz committed Mar 19, 2019
    Copy the full SHA
    2718359 View commit details
  3. Merge pull request #57896 from dotlambda/asyncio-remove

    python.pkgs.asyncio: remove
    Mic92 authored Mar 19, 2019
    Copy the full SHA
    5e888d1 View commit details
5 changes: 1 addition & 4 deletions pkgs/development/python-modules/aioamqp/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy33, pythonOlder,
asyncio
{ lib, buildPythonPackage, fetchPypi, pythonOlder,
}:

buildPythonPackage rec {
@@ -17,7 +16,5 @@ buildPythonPackage rec {
sha256 = "17vrl6jajr81bql7kjgq0zkxy225px97z4g9wmbhbbnvzn1p92c0";
};

buildInputs = lib.optionals isPy33 [ asyncio ];

disabled = pythonOlder "3.3";
}
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/aiodns/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchPypi
, isPy33, isPy27, isPyPy, python, pycares, typing, asyncio, trollius }:
, isPy27, isPyPy, python, pycares, typing, trollius }:

buildPythonPackage rec {
pname = "aiodns";
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/aioeventlet/default.nix
Original file line number Diff line number Diff line change
@@ -3,21 +3,21 @@
, fetchPypi
, eventlet
, trollius
, asyncio
, mock
, python
}:

buildPythonPackage rec {
pname = "aioeventlet";
version = "0.5.1";
# version is called 0.5.1 on PyPI, but the filename is aioeventlet-0.5.2.tar.gz
version = "0.5.2";

src = fetchPypi {
inherit pname version;
sha256 = "cecb51ea220209e33b53cfb95124d90e4fcbee3ff8ba8a179a57120b8624b16a";
};

propagatedBuildInputs = [ eventlet trollius asyncio ];
propagatedBuildInputs = [ eventlet trollius ];
buildInputs = [ mock ];

# 2 tests error out
5 changes: 0 additions & 5 deletions pkgs/development/python-modules/aiofiles/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy33
, pythonOlder
, asyncio
, singledispatch
}:

buildPythonPackage rec {
@@ -18,8 +15,6 @@ buildPythonPackage rec {

disabled = pythonOlder "3.3";

propagatedBuildInputs = lib.optionals isPy33 [ asyncio singledispatch ];

# No tests in archive
doCheck = false;

18 changes: 0 additions & 18 deletions pkgs/development/python-modules/asyncio/default.nix

This file was deleted.

5 changes: 2 additions & 3 deletions pkgs/development/python-modules/autobahn/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, isPy33,
six, txaio, twisted, zope_interface, cffi, asyncio, trollius, futures,
{ lib, buildPythonPackage, fetchPypi, isPy3k,
six, txaio, twisted, zope_interface, cffi, trollius, futures,
mock, pytest
}:
buildPythonPackage rec {
@@ -12,7 +12,6 @@ buildPythonPackage rec {
};

propagatedBuildInputs = [ six txaio twisted zope_interface cffi ] ++
(lib.optional isPy33 asyncio) ++
(lib.optionals (!isPy3k) [ trollius futures ]);

checkInputs = [ mock pytest ];
3 changes: 1 addition & 2 deletions pkgs/development/python-modules/discordpy/default.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,6 @@
, buildPythonPackage
, pythonOlder
, withVoice ? true, libopus
, asyncio
, aiohttp
, websockets
, pynacl
@@ -18,7 +17,7 @@ buildPythonPackage rec {
sha256 = "17fb8814100fbaf7a79468baa432184db6cef3bbea4ad194fe297c7407d50108";
};

propagatedBuildInputs = [ asyncio aiohttp websockets pynacl ];
propagatedBuildInputs = [ aiohttp websockets pynacl ];
patchPhase = ''
substituteInPlace "requirements.txt" \
--replace "aiohttp>=1.0.0,<1.1.0" "aiohttp"
2 changes: 0 additions & 2 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -997,8 +997,6 @@ in {

astor = callPackage ../development/python-modules/astor {};

asyncio = callPackage ../development/python-modules/asyncio {};

asyncssh = callPackage ../development/python-modules/asyncssh { };

python-fontconfig = callPackage ../development/python-modules/python-fontconfig { };