mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
python.pkgs.txaio: use pytest_3
Otherwise, tests fail with `Fixtures are not meant to be called directly, but are created automatically when test functions request them as parameters.`
This commit is contained in:
parent
4dcbcbb46e
commit
3c20d3c806
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock, six, twisted,isPy37 }:
|
||||
{ stdenv, buildPythonPackage, fetchPypi, pytest_3, mock, six, twisted,isPy37 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "txaio";
|
||||
|
@ -9,7 +9,7 @@ buildPythonPackage rec {
|
|||
sha256 = "67e360ac73b12c52058219bb5f8b3ed4105d2636707a36a7cdafb56fe06db7fe";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest mock ];
|
||||
checkInputs = [ pytest_3 mock ];
|
||||
|
||||
propagatedBuildInputs = [ six twisted ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue