Revert "python3Packages.pytest-testmon: 1.0.2 -> 1.0.3"

This reverts commit 0fc5e60fd2510bea25434eadf7e986208632c29c.

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.
This commit is contained in:
Arnout Engelen 2020-11-16 10:20:41 +01:00
parent 5bafec36ef
commit 1538cd4b2f
No known key found for this signature in database
GPG Key ID: 061107B0F74A6DAA

View File

@ -8,12 +8,12 @@
buildPythonPackage rec {
pname = "pytest-testmon";
version = "1.0.3";
version = "1.0.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "927a73dd510b90a2e4a48ea4d37e82c4490b56caa745663262024ea0cd278169";
sha256 = "fdb016d953036051d1ef0e36569b7168cefa4914014789a65a4ffefc87f85ac5";
};
propagatedBuildInputs = [ coverage ];