nixpkgs/pkgs/development/python-modules/aiofiles/default.nix

33 lines
659 B
Nix
Raw Normal View History

2017-06-04 12:24:32 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy33
, pythonOlder
, asyncio
, singledispatch
}:
buildPythonPackage rec {
pname = "aiofiles";
2017-10-25 20:04:35 +02:00
version = "0.3.2";
2017-06-04 12:24:32 +02:00
src = fetchPypi {
inherit pname version;
2017-10-25 20:04:35 +02:00
sha256 = "852a493a877b73e11823bfd4e8e5ef2610d70d12c9eaed961bcd9124d8de8c10";
2017-06-04 12:24:32 +02:00
};
disabled = pythonOlder "3.3";
propagatedBuildInputs = lib.optionals isPy33 [ asyncio singledispatch ];
# 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 ];
2017-06-04 12:24:32 +02:00
};
}