From 014b6e0627343f6c527c058d5a766cdfb6f5c9ac Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 1 Sep 2016 20:26:04 +0200 Subject: [PATCH] pythonPackages.natsort: broken --- pkgs/top-level/python-packages.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fdbb4dc3062..72b915a7582 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7579,26 +7579,29 @@ in modules // { }; natsort = buildPythonPackage rec { - name = "natsort-4.0.0"; + name = "natsort-5.0.1"; src = pkgs.fetchurl { url = "mirror://pypi/n/natsort/${name}.tar.gz"; - sha256 = "a0d4239bd609eae5cd5163db6f9794378ce0e3f43ae16c10c35472d866ae20cd"; + sha256 = "4ad6b4d1153451e345967989bd3ca30abf33f615b116eeadfcc51a456e6974a9"; }; buildInputs = with self; [ hypothesis1 + pytestcache pytestcov pytestflakes pytestpep8 - covCore + mock + pathlib ]; meta = { description = "Natural sorting for python"; homepage = https://github.com/SethMMorton/natsort; license = licenses.mit; + broken = true; }; };