nixpkgs/pkgs/development/python-modules/aiofiles/default.nix
Robert Schütz a4a61777e8 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.
2019-03-19 10:11:23 +01:00

28 lines
547 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiofiles";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "021ea0ba314a86027c166ecc4b4c07f2d40fc0f4b3a950d1868a0f2571c2bbee";
};
disabled = pythonOlder "3.3";
# No tests in archive
doCheck = false;
meta = {
description = "File support for asyncio";
homepage = https://github.com/Tinche/aiofiles;
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ fridh ];
};
}