about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/connection-pool/default.nix
blob: 26e958f095efd1cf0a5edb4c4d302bda30ddbc3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 ];
  };
}