python3.pkgs.pydevtool: init at 0.3.0
This commit is contained in:
parent
a5aeb5016d
commit
0ee5c23301
37
pkgs/development/python-modules/pydevtool/default.nix
Normal file
37
pkgs/development/python-modules/pydevtool/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user