python3.pkgs.pydevtool: init at 0.3.0

This commit is contained in:
Doron Behar 2023-03-27 14:24:44 +03:00
parent a5aeb5016d
commit 0ee5c23301
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, fetchPypi
, setuptools
, buildPythonPackage
, doit
}:
buildPythonPackage rec {
pname = "pydevtool";
version = "0.3.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-JeO6Tz0zzKwz7iuXdZlYSNSemzGLehRkd/tdUveG/Io=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
doit
];
pythonImportsCheck = [
"pydevtool"
];
meta = with lib; {
homepage = "https://github.com/pydoit/pydevtool";
description = "CLI dev tools powered by pydoit";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar ];
};
}

View File

@ -8119,6 +8119,8 @@ self: super: with self; {
pydevd = callPackage ../development/python-modules/pydevd { };
pydevtool = callPackage ../development/python-modules/pydevtool { };
pydexcom = callPackage ../development/python-modules/pydexcom { };
pydicom = callPackage ../development/python-modules/pydicom { };