Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / dbutils / default.nix
blob848e5038af8d54c2e0f78fad220b09f25d197f90
1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
3 buildPythonPackage rec {
4   version = "2.0";
5   pname = "dbutils";
7   src = fetchPypi {
8     inherit version;
9     pname = "DBUtils";
10     sha256 = "131ifm2c2a7bipij597i8fvjka0dk2qv1xr2ghcvbc30jlkvag2g";
11   };
13   checkInputs = [ pytestCheckHook ];
15   meta = with lib; {
16     description = "Database connections for multi-threaded environments";
17     homepage = "https://webwareforpython.github.io/DBUtils/";
18     license = licenses.mit;
19     maintainers = with maintainers; [ SuperSandro2000 ];
20   };