From 9f446bd8d0099d224d46b093231f972c0640bdf3 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 1 Jun 2019 23:36:40 +0100 Subject: [PATCH] pythonPackages.pytest-fixture-config: 1.4.0 -> 1.7.0 --- .../python-modules/pytest-fixture-config/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pytest-fixture-config/default.nix b/pkgs/development/python-modules/pytest-fixture-config/default.nix index e9ae311d496..7fc3d4e951f 100644 --- a/pkgs/development/python-modules/pytest-fixture-config/default.nix +++ b/pkgs/development/python-modules/pytest-fixture-config/default.nix @@ -1,18 +1,18 @@ { stdenv, buildPythonPackage, fetchPypi -, setuptools-git, pytest_3 }: +, setuptools-git, pytest }: buildPythonPackage rec { pname = "pytest-fixture-config"; - version = "1.4.0"; + version = "1.7.0"; src = fetchPypi { inherit pname version; - sha256 = "839d70343c87d6dda5bca88e3ab06e7b2027998dc1ec452c14d50be5725180a3"; + sha256 = "13i1qpz22w3x4dmw8vih5jdnbqfqvl7jiqs0dg764s0zf8bp98a1"; }; nativeBuildInputs = [ setuptools-git ]; - buildInputs = [ pytest_3 ]; + buildInputs = [ pytest ]; doCheck = false;