nixpkgs/pkgs/development/python-modules/pytest-testmon/default.nix
Arnout Engelen 1538cd4b2f
Revert "python3Packages.pytest-testmon: 1.0.2 -> 1.0.3"
This reverts commit 0fc5e60fd2.

For some reason the v1.0.3 PyPI tarball ships with tests that expect pytest-testmon master instead of the v1.0.3 code (tarpas/pytest-testmon#158), causing these tests to fail against 1.0.3 itself.
2020-11-16 10:21:10 +01:00

38 lines
876 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, coverage
, pytest
}:
buildPythonPackage rec {
pname = "pytest-testmon";
version = "1.0.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "fdb016d953036051d1ef0e36569b7168cefa4914014789a65a4ffefc87f85ac5";
};
propagatedBuildInputs = [ coverage ];
checkInputs = [ pytest ];
# avoid tests which try to import unittest_mixins
# unittest_mixins doesn't seem to be very active
checkPhase = ''
cd test
pytest test_{core,process_code,pytest_assumptions}.py
'';
meta = with lib; {
homepage = "https://github.com/tarpas/pytest-testmon/";
description = "This is a py.test plug-in which automatically selects and re-executes only tests affected by recent changes";
license = licenses.mit;
maintainers = [ maintainers.dmvianna ];
};
}