about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cmd2-ext-test/default.nix
blob: 4cdf9ccf8dcd8e94dde428aaf99781bf3e0fd45a (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
32
33
34
35
36
37
38
39
40
41
42
43
44
{ lib
, buildPythonPackage
, cmd2
, fetchPypi
, pytestCheckHook
, pythonOlder
, setuptools-scm
}:

buildPythonPackage rec {
  pname = "cmd2-ext-test";
  version = "2.0.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-uTc+onurLilwQe0trESR3JGa5WFT1fCt3rRA7rhRpaY=";
  };

  nativeBuildInputs = [
    setuptools-scm
  ];

  propagatedBuildInputs = [
    cmd2
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "cmd2_ext_test"
  ];

  meta = with lib; {
    description = "Plugin supports testing of a cmd2 application";
    homepage = "https://github.com/python-cmd2/cmd2/tree/master/plugins/ext_test";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}