pythonPackages.pika-pool: init at 0.1.3

fixes #25750
This commit is contained in:
Antoine Eiche
2017-05-12 23:59:31 +02:00
committed by Jörg Thalheim
parent c1a5754b67
commit 9694567ac9
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi
, pika
}:
buildPythonPackage rec {
pname = "pika-pool";
version = "0.1.3";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "f3985888cc2788cdbd293a68a8b5702a9c955db6f7b8b551aeac91e7f32da397";
};
# Tests require database connections
doCheck = false;
propagatedBuildInputs = [ pika ];
meta = with stdenv.lib; {
homepage = "https://github.com/bninja/pika-pool";
license = licenses.bsdOriginal;
description = "Pools for pikas.";
};
}