forked from mirrors/nixpkgs
Add pika pythonPackage
For some reason tests don't run Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
parent
477c53cec0
commit
18b65bfd0b
|
@ -2734,6 +2734,18 @@ pythonPackages = python.modules // rec {
|
|||
};
|
||||
|
||||
|
||||
pika = buildPythonPackage {
|
||||
name = "pika-0.9.12";
|
||||
src = fetchurl {
|
||||
url = https://pypi.python.org/packages/source/p/pika/pika-0.9.12.tar.gz;
|
||||
md5 = "7174fc7cc5570314fa3cfaa729106482";
|
||||
};
|
||||
buildInputs = [ nose mock pyyaml ];
|
||||
|
||||
propagatedBuildInputs = [ unittest2 ];
|
||||
};
|
||||
|
||||
|
||||
pillow = buildPythonPackage rec {
|
||||
name = "Pillow-1.7.8";
|
||||
|
||||
|
|
Loading…
Reference in a new issue