1
0
Fork 1
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:
Robert Schütz 2019-02-14 14:03:21 +01:00 committed by Frederik Rietdijk
parent 4dcbcbb46e
commit 3c20d3c806

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock, six, twisted,isPy37 }: { stdenv, buildPythonPackage, fetchPypi, pytest_3, mock, six, twisted,isPy37 }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "txaio"; pname = "txaio";
@ -9,7 +9,7 @@ buildPythonPackage rec {
sha256 = "67e360ac73b12c52058219bb5f8b3ed4105d2636707a36a7cdafb56fe06db7fe"; sha256 = "67e360ac73b12c52058219bb5f8b3ed4105d2636707a36a7cdafb56fe06db7fe";
}; };
checkInputs = [ pytest mock ]; checkInputs = [ pytest_3 mock ];
propagatedBuildInputs = [ six twisted ]; propagatedBuildInputs = [ six twisted ];