summary refs log blame commit diff
path: root/pkgs/development/python-modules/async_timeout/default.nix
blob: aabf30183d565029f05fdb4103e038181cb560cf (plain) (tree)
1
2
3
4
5
6
7
8
9
     
           
                    


             
                        
                          
                    
 

                          
                                                                                

    









                                                                 
 
{ lib
, fetchPypi
, buildPythonPackage
, pythonOlder
}:

buildPythonPackage rec {
  pname = "async-timeout";
  version = "3.0.1";

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

  # Circular dependency on aiohttp
  doCheck = false;

  disabled = pythonOlder "3.4";

  meta = {
    description = "Timeout context manager for asyncio programs";
    homepage = https://github.com/aio-libs/async_timeout/;
    license = lib.licenses.asl20;
  };
}