nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.05 21 lines 550 B view raw
1{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }: 2 3buildPythonPackage rec { 4 version = "2.0"; 5 pname = "dbutils"; 6 7 src = fetchPypi { 8 inherit version; 9 pname = "DBUtils"; 10 sha256 = "131ifm2c2a7bipij597i8fvjka0dk2qv1xr2ghcvbc30jlkvag2g"; 11 }; 12 13 checkInputs = [ pytestCheckHook ]; 14 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 }; 21}