depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-asyncio/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

29 lines
825 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pytest, isPy3k, isPy35, async_generator }:
buildPythonPackage rec {
pname = "pytest-asyncio";
version = "0.10.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "9fac5100fd716cbecf6ef89233e8590a4ad61d729d1732e0a96b84182df1daaf";
};
buildInputs = [ pytest ]
++ stdenv.lib.optionals isPy35 [ async_generator ];
# No tests in archive
doCheck = false;
# LICENSE file is not distributed. https://github.com/pytest-dev/pytest-asyncio/issues/92
postPatch = ''
substituteInPlace setup.cfg --replace "license_file = LICENSE" ""
'';
meta = with stdenv.lib; {
description = "library for testing asyncio code with pytest";
license = licenses.asl20;
homepage = "https://github.com/pytest-dev/pytest-asyncio";
};
}