summary refs log tree commit diff
path: root/pkgs/development/python-modules/carrot/default.nix
blob: 3b976fb7ad9a27dee0a92f4744f892bee2f8cdcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchPypi
, nose, amqplib, anyjson }:

buildPythonPackage rec {
  pname = "carrot";
  version = "0.10.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0s14rs2fgp1s2qa0avn8gj33lwc3k1hd4y9a2h6mhg487i7kfinb";
  };

  buildInputs = [ nose ];
  propagatedBuildInputs = [ amqplib anyjson ];

  doCheck = false; # depends on the network

  meta = with stdenv.lib; {
    homepage = https://pypi.python.org/pypi/carrot;
    description = "AMQP Messaging Framework for Python";
  };
}