summary refs log tree commit diff
path: root/pkgs/development/python-modules/asynctest/default.nix
blob: 0004badd6f402c65648bbc4d52219e2e1c893bf4 (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
30
{ lib, buildPythonPackage, fetchPypi, fetchFromGitHub, pythonOlder, python }:

buildPythonPackage rec {
  pname = "asynctest";
  version = "0.12.2";

  disabled = pythonOlder "3.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "77520850ae21620ec31738f4a7b467acaa44de6d3752d8ac7a9f4dcf55d77853";
  };

  postPatch = ''
    # Skip failing test, probably caused by file system access
    substituteInPlace test/test_selector.py \
      --replace "test_events_watched_outside_test_are_ignored" "xtest_events_watched_outside_test_are_ignored"
  '';

  checkPhase = ''
    ${python.interpreter} -m unittest test
  '';

  meta = with lib; {
    description = "Enhance the standard unittest package with features for testing asyncio libraries";
    homepage = https://github.com/Martiusweb/asynctest;
    license = licenses.asl20;
    maintainers = with maintainers; [ dotlambda ];
  };
}