about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/txaio/default.nix
blob: dd3b899efa9e59a2e85481b6827fbf67ff1b0fe5 (plain) (blame)
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_3, mock, six, twisted,isPy37 }:

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

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

  checkInputs = [ pytest_3 mock ];

  propagatedBuildInputs = [ six twisted ];

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

  # Needs some fixing for 3.7
  doCheck = !isPy37;

  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 ];
  };
}