Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / dbutils / default.nix
blob570f770e7777b6daac3755eb0c44e30abf39b5b6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "dbutils";
10   version = "3.0.3";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit version;
17     pname = "DBUtils";
18     hash = "sha256-jkhWWxKtK0sfIU3gKU3utLKFePWyq7QNaMKSS2TX4Ac=";
19   };
21   nativeCheckInputs = [
22     pytestCheckHook
23   ];
25   pythonImportsCheck = [
26     "dbutils"
27   ];
29   meta = with lib; {
30     description = "Database connections for multi-threaded environments";
31     homepage = "https://webwareforpython.github.io/DBUtils/";
32     license = licenses.mit;
33     maintainers = with maintainers; [ ];
34   };