Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b80ab1565de2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 58cc7968be79
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on Nov 20, 2020

  1. python3Packages.gevent: 20.5.2 -> 20.9.0

    Jonathan Ringer committed Nov 20, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3234520 View commit details
  2. python3Packages.greenlet: 0.4.16 -> 0.4.17

    Jonathan Ringer committed Nov 20, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0aeddb4 View commit details
  3. python3Packages.cassandra-driver: mark broken

    geomet doesn't exist in nixpkgs
    Jonathan Ringer committed Nov 20, 2020
    Copy the full SHA
    06003e0 View commit details
  4. python3Packages.gipc: mark broken

    no longer compatible with a recent version of gevent
    Jonathan Ringer committed Nov 20, 2020
    Copy the full SHA
    58cc796 View commit details
Original file line number Diff line number Diff line change
@@ -42,5 +42,6 @@ buildPythonPackage rec {
description = "A Python client driver for Apache Cassandra";
homepage = "http://datastax.github.io/python-driver";
license = licenses.asl20;
broken = true; # geomet doesn't exist
};
}
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/gevent/default.nix
Original file line number Diff line number Diff line change
@@ -4,12 +4,12 @@

buildPythonPackage rec {
pname = "gevent";
version = "20.5.2";
version = "20.9.0";
format = "pyproject";

src = fetchPypi {
inherit pname version;
sha256 = "2756de36f56b33c46f6cc7146a74ba65afcd1471922c95b6771ce87b279d689c";
sha256 = "13aw9x6imsy3b369kfjblqiwfni69pp32m4r13n62r9k3l2lhvaz";
};

buildInputs = [ libev ];
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/gipc/default.nix
Original file line number Diff line number Diff line change
@@ -27,6 +27,8 @@ buildPythonPackage rec {
'';
homepage = "http://gehrcke.de/gipc";
license = licenses.mit;
# gipc only has support for older versions of gevent
broken = versionOlder "1.6" gevent.version;
};

}
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/greenlet/default.nix
Original file line number Diff line number Diff line change
@@ -8,12 +8,12 @@

buildPythonPackage rec {
pname = "greenlet";
version = "0.4.16";
version = "0.4.17";
disabled = isPyPy; # builtin for pypy

src = fetchPypi {
inherit pname version;
sha256 = "6e06eac722676797e8fce4adb8ad3dc57a1bb3adfb0dd3fdf8306c055a38456c";
sha256 = "0swdhrcq13bdszv3yz5645gi4ijbzmmhxpb6whcfg3d7d5f87n21";
};

propagatedBuildInputs = [ six ];