aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pytest-trio/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/pytest-trio/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/pytest-trio/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/pytest-trio/default.nix b/nixpkgs/pkgs/development/python-modules/pytest-trio/default.nix
new file mode 100644
index 00000000000..923fe14cfac
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/pytest-trio/default.nix
@@ -0,0 +1,43 @@
+{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
+, trio, python, async_generator, hypothesis, outcome, pytest }:
+
+buildPythonPackage rec {
+ pname = "pytest-trio";
+ version = "0.6.0";
+ disabled = pythonOlder "3.5";
+
+ src = fetchFromGitHub {
+ owner = "python-trio";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "09v2031yxm8ryhq12205ldcck76n3wwqhjjsgfmn6dxfiqb0vbw9";
+ };
+
+ propagatedBuildInputs = [
+ trio
+ async_generator
+ outcome
+ pytest
+ ];
+
+ checkInputs = [
+ 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 ];
+ };
+}