about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pycatch22/default.nix
blob: c82088d9adbe86902a14ee38c698c7bcc6d9d87b (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
45
46
47
48
49
50
51
52
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pandas
, pythonOlder
}:

buildPythonPackage rec {
  pname = "pycatch22";
  version = "0.4.4";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "DynamicsAndNeuralSystems";
    repo = "pycatch22";
    rev = "refs/tags/v${version}";
    hash = "sha256-l41LLo9k075EL8rV48bwa4Yw12XuqNJSDYtd9kyqS3U=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  nativeCheckInputs = [
    pandas
  ];

  # This packages does not have real tests
  # But we can run this file as smoketest
  checkPhase = ''
    runHook preCheck

    python tests/testing.py

    runHook postCheck
  '';

  pythonImportsCheck = [
    "pycatch22"
  ];

  meta = with lib; {
    description = "Python implementation of catch22";
    homepage = "https://github.com/DynamicsAndNeuralSystems/pycatch22";
    changelog = "https://github.com/DynamicsAndNeuralSystems/pycatch22/releases/tag/v${version}";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ mbalatsko ];
  };
}