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: 1533099b9f95
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 56e277354aa4
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 13, 2018

  1. pythonPackages.amqplib: 0.6.1 -> 1.0.2

    costrouc authored and FRidh committed Oct 13, 2018
    Copy the full SHA
    56e2773 View commit details
Showing with 12 additions and 7 deletions.
  1. +12 −7 pkgs/development/python-modules/amqplib/default.nix
19 changes: 12 additions & 7 deletions pkgs/development/python-modules/amqplib/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
{ stdenv, buildPythonPackage, fetchurl }:
{ stdenv, buildPythonPackage, fetchPypi, python }:

buildPythonPackage rec {
pname = "amqplib";
version = "0.6.1";
version = "1.0.2";

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

# error: invalid command 'test'
# testing assumes network connection
doCheck = false;

checkPhase = ''
${python.interpreter} tests/client_0_8/run_all.py
'';

meta = with stdenv.lib; {
homepage = http://code.google.com/p/py-amqplib/;
homepage = https://github.com/barryp/py-amqplib;
description = "Python client for the Advanced Message Queuing Procotol (AMQP)";
license = licenses.lgpl21;
};