10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "DynamicsAndNeuralSystems";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-NvZrjOdC6rV4hwCuGcc2Br/VDhLwZcYpfnNvQpqU134=";
24 nativeBuildInputs = [ setuptools ];
26 nativeCheckInputs = [ pandas ];
28 # This packages does not have real tests
29 # But we can run this file as smoketest
33 python tests/testing.py
38 pythonImportsCheck = [ "pycatch22" ];
41 description = "Python implementation of catch22";
42 homepage = "https://github.com/DynamicsAndNeuralSystems/pycatch22";
43 changelog = "https://github.com/DynamicsAndNeuralSystems/pycatch22/releases/tag/v${version}";
44 license = licenses.gpl3Plus;
45 maintainers = with maintainers; [ mbalatsko ];