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: 6ad4e3e315af
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 456ff62ff820
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 28, 2019

  1. gipc: 0.6.0 -> 1.0.1, py3

    dtzWill committed Feb 28, 2019
    Copy the full SHA
    9518ca8 View commit details
  2. Copy the full SHA
    6e7e3ae View commit details

Commits on Mar 1, 2019

  1. Merge pull request #56528 from dtzWill/update/gdrivefs-gipc-py3

    gipc,gdrivefs: update
    dtzWill authored Mar 1, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    jeherve Jeremy Herve
    Copy the full SHA
    456ff62 View commit details
Showing with 4 additions and 6 deletions.
  1. +2 −2 pkgs/development/python-modules/gdrivefs/default.nix
  2. +2 −4 pkgs/development/python-modules/gipc/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/gdrivefs/default.nix
Original file line number Diff line number Diff line change
@@ -12,13 +12,13 @@
}:

buildPythonPackage rec {
version = "0.14.9";
version = "0.14.12";
pname = "gdrivefs";
disabled = isPy3k;

src = fetchurl {
url = "https://github.com/dsoprea/GDriveFS/archive/${version}.tar.gz";
sha256 = "1mc2r35nf5k8vzwdcdhi0l9rb97amqd5xb53lhydj8v8f4rndk7a";
sha256 = "0m45z77idy0bs5fqlz0y534fy28ikamrd321hmqsc3q7d39kqzv0";
};

buildInputs = [ gipc greenlet httplib2 six ];
6 changes: 2 additions & 4 deletions pkgs/development/python-modules/gipc/default.nix
Original file line number Diff line number Diff line change
@@ -7,13 +7,11 @@

buildPythonPackage rec {
pname = "gipc";
version = "0.6.0";
disabled = isPy3k;
version = "1.0.1";

src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0pd9by719qh882hqs6xpby61sn1x5h98hms5p2p8yqnycrf1s0h2";
sha256 = "1zg5bm30lqqd8x0jqbvr4yi8i4rzzk2hdnh280qnj2bwm5nqpghi";
};

propagatedBuildInputs = [ gevent ];