From 0f2570554c70f25a616115b2c11d6284245db011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 3 Dec 2018 10:35:08 +0100 Subject: [PATCH] python.pkgs.natsort: 5.4.1 -> 5.5.0 --- .../python-modules/natsort/default.nix | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/natsort/default.nix b/pkgs/development/python-modules/natsort/default.nix index 5c652744fa16..92f885d7bbda 100644 --- a/pkgs/development/python-modules/natsort/default.nix +++ b/pkgs/development/python-modules/natsort/default.nix @@ -2,32 +2,31 @@ , buildPythonPackage , pythonOlder , fetchPypi -, hypothesis -, pytestcache , pytest +, pytestcov +, pytest-mock +, hypothesis , glibcLocales -, mock ? null , pathlib ? null }: buildPythonPackage rec { pname = "natsort"; - version = "5.4.1"; + version = "5.5.0"; checkInputs = [ - hypothesis - pytestcache pytest + pytestcov + pytest-mock + hypothesis glibcLocales ] # pathlib was made part of standard library in 3.5: - ++ (lib.optionals (pythonOlder "3.4") [ pathlib ]) - # based on testing-requirements.txt: - ++ (lib.optionals (pythonOlder "3.3") [ mock ]); + ++ (lib.optionals (pythonOlder "3.4") [ pathlib ]); src = fetchPypi { inherit pname version; - sha256 = "ae73b005135dc152e7b282b2d4cf19380d8cab4c4026461ee9f37bf3aa12e344"; + sha256 = "e29031f37aa264145d6ad9acdab335479ce3636806fc7aa70b7675a2b2198d09"; }; # testing based on project's tox.ini