Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / connection-pool / default.nix
blobc6785a183f5e1321d4ddfa090c9ac7f64ff1b4b0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 }:
7 buildPythonPackage rec {
8   pname = "connection-pool";
9   version = "0.0.3";
10   format = "setuptools";
11   disabled = !isPy3k;
13   src = fetchPypi {
14     pname = "connection_pool";
15     inherit version;
16     sha256 = "bf429e7aef65921c69b4ed48f3d48d3eac1383b05d2df91884705842d974d0dc";
17   };
19   doCheck = false; # no tests
20   pythonImportsCheck = [ "connection_pool" ];
22   meta = with lib; {
23     description = "Thread-safe connection pool";
24     homepage = "https://github.com/zhouyl/ConnectionPool";
25     license = with licenses; [ mit ];
26     maintainers = with maintainers; [ veprbl ];
27   };