mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
python3Packages.async_generator: disable tests
This commit is contained in:
parent
2552044eb2
commit
abfcd16d32
1 changed files with 5 additions and 5 deletions
|
@ -1,25 +1,25 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy35, pytest, pytest-asyncio }:
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy35, pytest, pytest-asyncio }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "async_generator";
|
pname = "async-generator";
|
||||||
version = "1.10";
|
version = "1.10";
|
||||||
|
|
||||||
disabled = pythonOlder "3.5";
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "async_generator";
|
||||||
|
inherit version;
|
||||||
sha256 = "6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144";
|
sha256 = "6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# no longer compatible with pytest-asyncio
|
||||||
|
doCheck = false;
|
||||||
checkInputs = [ pytest pytest-asyncio ];
|
checkInputs = [ pytest pytest-asyncio ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
pytest -W error -ra -v --pyargs async_generator
|
pytest -W error -ra -v --pyargs async_generator
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# disable tests on python3.5 to avoid circular dependency with pytest-asyncio
|
|
||||||
doCheck = !isPy35;
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Async generators and context managers for Python 3.5+";
|
description = "Async generators and context managers for Python 3.5+";
|
||||||
homepage = "https://github.com/python-trio/async_generator";
|
homepage = "https://github.com/python-trio/async_generator";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue