depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-trio/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

44 lines
919 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
, trio, hypothesis, outcome, pytest }:
buildPythonPackage rec {
pname = "pytest-trio";
version = "0.8.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "python-trio";
repo = pname;
rev = "v${version}";
sha256 = "sha256-gUH35Yk/pBD2EdCEt8D0XQKWU8BwmX5xtAW10qRhoYk=";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [
trio
outcome
];
nativeCheckInputs = [
pytest
hypothesis
];
# broken with pytest 5 and 6
doCheck = false;
checkPhase = ''
rm pytest.ini
PYTHONPATH=$PWD:$PYTHONPATH pytest
'';
pythonImportsCheck = [ "pytest_trio" ];
meta = with lib; {
description = "Pytest plugin for trio";
homepage = "https://github.com/python-trio/pytest-trio";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};
}