kdePackages.kirigami-addons: 1.5.0 -> 1.6.0 (#360539)
[NixPkgs.git] / pkgs / development / python-modules / dbutils / default.nix
blob2995db09d4a677d4ecf14a726b6860c67eec2df9
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   pytestCheckHook,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "dbutils";
12   version = "3.1.0";
13   pyproject = true;
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit version;
19     pname = "DBUtils";
20     hash = "sha256-6lKLoRBjJA7qgjRevG98yTJMBuQulCCwC80kWpW/zCQ=";
21   };
23   nativeBuildInputs = [ setuptools ];
25   nativeCheckInputs = [ pytestCheckHook ];
27   pythonImportsCheck = [ "dbutils" ];
29   meta = {
30     description = "Database connections for multi-threaded environments";
31     homepage = "https://webwareforpython.github.io/DBUtils/";
32     changelog = "https://webwareforpython.github.io/DBUtils/changelog.html";
33     license = lib.licenses.mit;
34     maintainers = [ ];
35   };