mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
28 lines
594 B
Nix
28 lines
594 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, pika
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pika-pool";
|
|
version = "0.1.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f3985888cc2788cdbd293a68a8b5702a9c955db6f7b8b551aeac91e7f32da397";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace "pika >=0.9,<0.11" "pika"
|
|
'';
|
|
|
|
# Tests require database connections
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ pika ];
|
|
meta = with lib; {
|
|
homepage = "https://github.com/bninja/pika-pool";
|
|
license = licenses.bsdOriginal;
|
|
description = "Pools for pikas.";
|
|
};
|
|
}
|