pythonPackages.connection-pool: init at 0.0.3
This commit is contained in:
parent
160831a5a8
commit
b8e7504c2b
2 changed files with 29 additions and 0 deletions
27
pkgs/development/python-modules/connection-pool/default.nix
Normal file
27
pkgs/development/python-modules/connection-pool/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue