depot/third_party/nixpkgs/pkgs/development/python-modules/dbutils/default.nix
Default email ffc78d3539 Project import generated by Copybara.
GitOrigin-RevId: d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64
2021-01-05 19:05:55 +02:00

21 lines
560 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook }:
buildPythonPackage rec {
version = "2.0";
pname = "dbutils";
src = fetchPypi {
inherit version;
pname = "DBUtils";
sha256 = "131ifm2c2a7bipij597i8fvjka0dk2qv1xr2ghcvbc30jlkvag2g";
};
checkInputs = [ pytestCheckHook ];
meta = with stdenv.lib; {
description = "Database connections for multi-threaded environments";
homepage = "https://webwareforpython.github.io/DBUtils/";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}