about summary refs log tree commit diff
path: root/pkgs/development/python-modules/asyncio/default.nix
blob: 5a6dbe7981480d22d250a72bdaff7c3462e4bbc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, buildPythonPackage, fetchPypi, isPy34 }:

buildPythonPackage rec {
  pname = "asyncio";
  version = "3.4.3";
  disabled = !isPy34;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0hfbqwk9y0bbfgxzg93s2wyk6gcjsdxlr5jwy97hx64ppkw0ydl3";
  };

  meta = with stdenv.lib; {
    description = "Reference implementation of PEP 3156";
    homepage = http://www.python.org/dev/peps/pep-3156;
    license = licenses.free;
  };
}