pythonPackages.sortedcontainers: 1.5.7 -> 2.0.4 (#44653)

Moving sortedcontianers from top-level -> python-modules and updating
to newest sortedcontianers release.

authored by Christopher Ostrouchov and committed by Robert Schütz 8de02232 27c6bf0e

+26 -20
+24
pkgs/development/python-modules/sortedcontainers/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "sortedcontainers"; 8 + version = "2.0.4"; 9 + 10 + src = fetchPypi { 11 + inherit pname version; 12 + sha256 = "607294c6e291a270948420f7ffa1fb3ed47384a4c08db6d1e9c92d08a6981982"; 13 + }; 14 + 15 + # pypi tarball does not come with tests 16 + doCheck = false; 17 + 18 + meta = { 19 + description = "Python Sorted Container Types: SortedList, SortedDict, and SortedSet"; 20 + homepage = http://www.grantjenks.com/docs/sortedcontainers/; 21 + license = lib.licenses.asl20; 22 + maintainers = with lib.maintainers; [ costrouc ]; 23 + }; 24 + }
+2 -20
pkgs/top-level/python-packages.nix
··· 503 503 504 504 sip = callPackage ../development/python-modules/sip { }; 505 505 506 + sortedcontainers = callPackage ../development/python-modules/sortedcontainers { }; 507 + 506 508 sklearn-deap = callPackage ../development/python-modules/sklearn-deap { }; 507 509 508 510 slackclient = callPackage ../development/python-modules/slackclient { }; ··· 7560 7562 mistune = callPackage ../development/python-modules/mistune { }; 7561 7563 7562 7564 brotlipy = callPackage ../development/python-modules/brotlipy { }; 7563 - 7564 - sortedcontainers = buildPythonPackage rec { 7565 - name = "sortedcontainers-${version}"; 7566 - version = "1.5.7"; 7567 - 7568 - src = pkgs.fetchurl { 7569 - url = "mirror://pypi/s/sortedcontainers/${name}.tar.gz"; 7570 - sha256 = "1sjh8lccbmvwna91mlhl5m3z4320p07h063b8x8br4p4cll49w0g"; 7571 - }; 7572 - 7573 - # tries to run tests for all python versions and uses virtualenv weirdly 7574 - doCheck = false; 7575 - #buildInputs = with self; [ tox nose ]; 7576 - 7577 - meta = { 7578 - description = "Python Sorted Container Types: SortedList, SortedDict, and SortedSet"; 7579 - homepage = "http://www.grantjenks.com/docs/sortedcontainers/"; 7580 - license = licenses.asl20; 7581 - }; 7582 - }; 7583 7565 7584 7566 sortedcollections = buildPythonPackage rec { 7585 7567 name = "sortedcollections-${version}";