forked from mirrors/nixpkgs
Merge pull request #133384 from fabaff/bump-dbutils
python3Packages.dbutils: 2.0.1 -> 2.0.2
This commit is contained in:
commit
fe6eb6881c
|
@ -1,17 +1,23 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "2.0.1";
|
version = "2.0.2";
|
||||||
pname = "dbutils";
|
pname = "dbutils";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit version;
|
inherit version;
|
||||||
pname = "DBUtils";
|
pname = "DBUtils";
|
||||||
sha256 = "sha256-Vw590TbBMRb+74vKGGCeP2a4ZoqcPV8hCdh0TERE2GE=";
|
sha256 = "1cc8zyd4lapzf9ny6c2jf1vysphlhr19m8miyvw5spbyq4pxpnsf";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "dbutils" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Database connections for multi-threaded environments";
|
description = "Database connections for multi-threaded environments";
|
||||||
homepage = "https://webwareforpython.github.io/DBUtils/";
|
homepage = "https://webwareforpython.github.io/DBUtils/";
|
||||||
|
|
Loading…
Reference in a new issue