pythonPackages.natsort: broken

This commit is contained in:
Frederik Rietdijk 2016-09-01 20:26:04 +02:00
parent 4d2420e3f8
commit 014b6e0627
1 changed files with 6 additions and 3 deletions

View File

@ -7579,26 +7579,29 @@ in modules // {
}; };
natsort = buildPythonPackage rec { natsort = buildPythonPackage rec {
name = "natsort-4.0.0"; name = "natsort-5.0.1";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "mirror://pypi/n/natsort/${name}.tar.gz"; url = "mirror://pypi/n/natsort/${name}.tar.gz";
sha256 = "a0d4239bd609eae5cd5163db6f9794378ce0e3f43ae16c10c35472d866ae20cd"; sha256 = "4ad6b4d1153451e345967989bd3ca30abf33f615b116eeadfcc51a456e6974a9";
}; };
buildInputs = with self; buildInputs = with self;
[ [
hypothesis1 hypothesis1
pytestcache
pytestcov pytestcov
pytestflakes pytestflakes
pytestpep8 pytestpep8
covCore mock
pathlib
]; ];
meta = { meta = {
description = "Natural sorting for python"; description = "Natural sorting for python";
homepage = https://github.com/SethMMorton/natsort; homepage = https://github.com/SethMMorton/natsort;
license = licenses.mit; license = licenses.mit;
broken = true;
}; };
}; };