depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-asyncio/default.nix
Default email e7f069c37c Project import generated by Copybara.
GitOrigin-RevId: 467ce5a9f45aaf96110b41eb863a56866e1c2c3c
2020-06-02 20:00:15 +02:00

29 lines
813 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pytest, isPy3k, isPy35, async_generator }:
buildPythonPackage rec {
pname = "pytest-asyncio";
version = "0.12.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1lpb1q297rly685yl23mni3mmv6vmyx3qsv5ccj1vh8bvkrx4ns7";
};
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";
};
}