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: 753aab14947c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c64d8eaaead7
Choose a head ref
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Jul 3, 2017

  1. Copy the full SHA
    54eeab4 View commit details
  2. Copy the full SHA
    034c1a2 View commit details
  3. Copy the full SHA
    c64d8ea View commit details
3 changes: 2 additions & 1 deletion maintainers/scripts/update-python-libraries
Original file line number Diff line number Diff line change
@@ -91,7 +91,8 @@ def _get_latest_version_pypi(package, extension):
if release['filename'].endswith(extension):
# TODO: In case of wheel we need to do further checks!
sha256 = release['digests']['sha256']

else:
sha256 = None
return version, sha256


4 changes: 2 additions & 2 deletions pkgs/development/python-modules/channels/default.nix
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@
buildPythonPackage rec {
pname = "channels";
name = "${pname}-${version}";
version = "1.1.5";
version = "1.1.6";

src = fetchurl {
url = "mirror://pypi/c/channels/${name}.tar.gz";
sha256 = "a9005bcb6104d26a7f93d9cf012bcf6765a0ff444a449ac68d6e1f16721f8ed3";
sha256 = "44ab9a1f610ecc9ac25d5f90e7a44f49b18de28a05a26fe34e935af257f1eefe";
};

# Files are missing in the distribution
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/django_guardian.nix
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@
buildPythonPackage rec {
pname = "django-guardian";
name = "${pname}-${version}";
version = "1.4.8";
version = "1.4.9";

src = fetchurl {
url = "mirror://pypi/d/django-guardian/${name}.tar.gz";
sha256 = "039mfx47c05vl6vlld0ahyq37z7m5g68vqc38pj8iic5ysr98drm";
sha256 = "c3c0ab257c9d94ce154b9ee32994e3cff8b350c384040705514e14a9fb7c8191";
};

buildInputs = [ pytest pytestrunner pytest-django django_environ mock setuptools_scm ];
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/dogpile.cache/default.nix
Original file line number Diff line number Diff line change
@@ -4,12 +4,12 @@

buildPythonPackage rec {
pname = "dogpile.cache";
version = "0.6.3";
version = "0.6.4";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "e9747f5e31f8dea1b80d6204358885f943f69e53574d88005438ca3651c44553";
sha256 = "a73aa3049cd88d7ec57a1c2e8946abdf4f14188d429c1023943fcc55c4568da1";
};

# Disable concurrency tests that often fail,
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/jupyter_client/default.nix
Original file line number Diff line number Diff line change
@@ -12,12 +12,12 @@

buildPythonPackage rec {
pname = "jupyter_client";
version = "5.0.1";
version = "5.1.0";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "1fe573880b5ca4469ed0bece098f4b910c373d349e12525e1ea3566f5a14536b";
sha256 = "08756b021765c97bc5665390700a4255c2df31666ead8bff116b368d09912aba";
};

buildInputs = [ nose ];