Commit c14a11b7 authored by Maksym Balatsko's avatar Maksym Balatsko
Browse files

python3Packages.pycatch22: init at 0.4.3

parent 6706ab69
Loading
Loading
Loading
Loading
+44 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pandas
}:

buildPythonPackage rec {
  pname = "pycatch22";
  version = "0.4.3";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "DynamicsAndNeuralSystems";
    repo = "pycatch22";
    rev = "v${version}";
    hash = "sha256-wjMklOzU9I3Y2HdZ+rOTiffoKda+6X9zwDsmB+HXrSY=";
  };

  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.gpl3Only;
    maintainers = with maintainers; [ mbalatsko ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -8939,6 +8939,8 @@ self: super: with self; {
  pycarwings2 = callPackage ../development/python-modules/pycarwings2 { };
  pycatch22 = callPackage ../development/python-modules/pycatch22 { };
  pycategories = callPackage ../development/python-modules/pycategories { };
  pycddl = callPackage ../development/python-modules/pycddl { };