lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.natsort: broken

+6 -3
+6 -3
pkgs/top-level/python-packages.nix
··· 7579 7579 }; 7580 7580 7581 7581 natsort = buildPythonPackage rec { 7582 - name = "natsort-4.0.0"; 7582 + name = "natsort-5.0.1"; 7583 7583 7584 7584 src = pkgs.fetchurl { 7585 7585 url = "mirror://pypi/n/natsort/${name}.tar.gz"; 7586 - sha256 = "a0d4239bd609eae5cd5163db6f9794378ce0e3f43ae16c10c35472d866ae20cd"; 7586 + sha256 = "4ad6b4d1153451e345967989bd3ca30abf33f615b116eeadfcc51a456e6974a9"; 7587 7587 }; 7588 7588 7589 7589 buildInputs = with self; 7590 7590 [ 7591 7591 hypothesis1 7592 + pytestcache 7592 7593 pytestcov 7593 7594 pytestflakes 7594 7595 pytestpep8 7595 - covCore 7596 + mock 7597 + pathlib 7596 7598 ]; 7597 7599 7598 7600 meta = { 7599 7601 description = "Natural sorting for python"; 7600 7602 homepage = https://github.com/SethMMorton/natsort; 7601 7603 license = licenses.mit; 7604 + broken = true; 7602 7605 }; 7603 7606 }; 7604 7607