about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pydevtool/default.nix
blob: de29d377379b93889fc7f4cecc421498157b60ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  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 ];
  };
}