aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/txaio/default.nix
blob: 7fb1b9e5b5cd49a2aaec3fd4d5cf5c3ee57a520c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock, six, twisted,isPy37 }:

buildPythonPackage rec {
  pname = "txaio";
  version = "18.8.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "67e360ac73b12c52058219bb5f8b3ed4105d2636707a36a7cdafb56fe06db7fe";
  };

  checkInputs = [ pytest mock ];

  propagatedBuildInputs = [ six twisted ];

  checkPhase = ''
    py.test -k "not test_sdist"
  '';

  # Needs some fixing
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Utilities to support code that runs unmodified on Twisted and asyncio.";
    homepage    = "https://github.com/crossbario/txaio";
    license     = licenses.mit;
    maintainers = with maintainers; [ nand0p ];
  };
}