pythonPackages.connection-pool: init at 0.0.3

This commit is contained in:
Dmitry Kalinkin
2021-06-24 11:36:10 -04:00
parent 160831a5a8
commit b8e7504c2b
2 changed files with 29 additions and 0 deletions
@@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "connection-pool";
version = "0.0.3";
disabled = !isPy3k;
src = fetchPypi {
pname = "connection_pool";
inherit version;
sha256 = "bf429e7aef65921c69b4ed48f3d48d3eac1383b05d2df91884705842d974d0dc";
};
doCheck = false; # no tests
pythonImportsCheck = [ "connection_pool" ];
meta = with lib; {
description = "Thread-safe connection pool";
homepage = "https://github.com/zhouyl/ConnectionPool";
license = with licenses; [ mit ];
maintainers = with maintainers; [ veprbl ];
};
}
+2
View File
@@ -1337,6 +1337,8 @@ in {
connect-box = callPackage ../development/python-modules/connect_box { };
connection-pool = callPackage ../development/python-modules/connection-pool { };
coqpit = callPackage ../development/python-modules/coqpit { };
cerberus = callPackage ../development/python-modules/cerberus { };