ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / aiounittest / default.nix
blobd2f9ad916904529267ad8319e5f8bb021c518f9d
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , nose
5 , coverage
6 , isPy27
7 , wrapt
8 }:
10 buildPythonPackage rec {
11   pname = "aiounittest";
12   version = "1.4.2";
13   disabled = isPy27;
15   src = fetchFromGitHub {
16     owner = "kwarunek";
17     repo = pname;
18     rev = "refs/tags/${version}";
19     sha256 = "sha256-7lDOI1SHPpRZLTHRTmfbKlZH18T73poJdFyVmb+HKms=";
20   };
22   propagatedBuildInputs = [
23     wrapt
24   ];
26   checkInputs = [
27     nose
28     coverage
29   ];
31   checkPhase = ''
32     nosetests
33   '';
35   pythonImportsCheck = [ "aiounittest" ];
37   meta = with lib; {
38     description = "Test asyncio code more easily";
39     homepage = "https://github.com/kwarunek/aiounittest";
40     license = licenses.mit;
41     maintainers = [ maintainers.costrouc ];
42   };