From f594ee195b486eed9072aed90bdb65f3b57e29aa Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 4 Jan 2017 09:14:18 +0100 Subject: [PATCH] pythonPackages.sortedcontainers: init at 1.5.7 --- pkgs/top-level/python-packages.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d913cca3e10..87ceb25392c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14658,6 +14658,26 @@ in { }; }; + sortedcontainers = buildPythonPackage rec { + name = "sortedcontainers-${version}"; + version = "1.5.7"; + + src = pkgs.fetchurl { + url = "mirror://pypi/s/sortedcontainers/${name}.tar.gz"; + sha256 = "1sjh8lccbmvwna91mlhl5m3z4320p07h063b8x8br4p4cll49w0g"; + }; + + # tries to run tests for all python versions and uses virtualenv weirdly + doCheck = false; + #buildInputs = with self; [ tox nose ]; + + meta = { + description = "Python Sorted Container Types: SortedList, SortedDict, and SortedSet"; + homepage = "http://www.grantjenks.com/docs/sortedcontainers/"; + license = licenses.asl20; + }; + }; + mitmproxy = buildPythonPackage rec { baseName = "mitmproxy"; name = "${baseName}-${version}";