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: 1c94c54c4a50
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 140f47eb748f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 29, 2017

  1. Update default.nix

    volth authored Jul 29, 2017
    Copy the full SHA
    fd73721 View commit details
  2. Merge pull request #27733 from volth/patch-6

    pythonPackages.amqplib: pypi->github
    FRidh authored Jul 29, 2017
    Copy the full SHA
    140f47e View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/python-modules/amqplib/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/python-modules/amqplib/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, buildPythonPackage, fetchPypi }:
{ stdenv, buildPythonPackage, fetchurl }:

buildPythonPackage rec {
pname = "amqplib";
version = "0.6.1";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "0f2618b74d95cd360a6d46a309a3fb1c37d881a237e269ac195a69a34e0e2f62";
src = fetchurl {
url = https://github.com/barryp/py-amqplib/archive/0.6.1.tar.gz;
sha256 = "04nsn68wz9m24rvbssirkyighazbn20j60wjmi0r7jcpcf00sb3s";
};

# error: invalid command 'test'