Merge pull request #297892 from JetpackJackson/add-python-dbglib

python311Packages.dbglib: init at 0.3.0
This commit is contained in:
éclairevoyant 2024-03-24 18:28:01 +00:00 committed by GitHub
commit e96fb64945
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 36 additions and 0 deletions

View File

@ -9033,6 +9033,12 @@
githubId = 1667473;
name = "Jethro Kuan";
};
jetpackjackson = {
email = "baileyannew@tutanota.com";
github = "JetpackJackson";
githubId = 88674707;
name = "Bailey Watkins";
};
jevy = {
email = "jevin@quickjack.ca";
github = "jevy";

View File

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "dbglib";
version = "0.3.0";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
sha256 = "7b4fd5c4949af435a7ab558f87b406acd5ddf9dc7f01fc3b3e99ebcec9a4674c";
};
propagatedBuildInputs = [
poetry-core
];
pythonImportsCheck = [
"dbglib"
];
meta = with lib; {
homepage = "https://github.com/savioxavier/dbglib/";
license = licenses.mit;
maintainers = [ maintainers.jetpackjackson ];
};
}

View File

@ -2748,6 +2748,8 @@ self: super: with self; {
dbfread = callPackage ../development/python-modules/dbfread { };
dbglib = callPackage ../development/python-modules/dbglib { };
dbt-bigquery = callPackage ../development/python-modules/dbt-bigquery { };
dbt-core = callPackage ../development/python-modules/dbt-core { };