ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / threadloop / default.nix
blob2fb8dd4420efe500cf940ad735933c5e728858d4
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 , tornado
5 }:
7 buildPythonPackage rec {
8   pname = "threadloop";
9   version = "1.0.2";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "8b180aac31013de13c2ad5c834819771992d350267bddb854613ae77ef571944";
14   };
16   propagatedBuildInputs = [
17     tornado
18   ];
20   doCheck = false; # ImportError: cannot import name 'ThreadLoop' from 'threadloop'
22   pythonImportsCheck = [ "threadloop" ];
24   meta = with lib; {
25     description = "A library to run tornado coroutines from synchronous Python";
26     homepage = "https://github.com/GoodPete/threadloop";
27     license = licenses.mit;
28     maintainers = with maintainers; [ ];
29   };