87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
37 lines
627 B
Nix
37 lines
627 B
Nix
{ 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 ];
|
|
};
|
|
|
|
}
|