depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-asyncio/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

29 lines
808 B
Nix

{ lib, buildPythonPackage, fetchPypi, pytest, isPy3k, isPy35, async_generator }:
buildPythonPackage rec {
pname = "pytest-asyncio";
version = "0.15.1";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "2564ceb9612bbd560d19ca4b41347b54e7835c2f792c504f698e05395ed63f6f";
};
buildInputs = [ pytest ]
++ 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 lib; {
description = "library for testing asyncio code with pytest";
license = licenses.asl20;
homepage = "https://github.com/pytest-dev/pytest-asyncio";
};
}