Merge pull request #256313 from mbalatsko/init-pycatch22

python3Packages.pycatch22: init at 0.4.3
This commit is contained in:
Fabian Affolter 2023-10-01 16:04:47 +02:00 committed by GitHub
commit 78fa4284b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,52 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pandas
, pythonOlder
}:
buildPythonPackage rec {
pname = "pycatch22";
version = "0.4.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "DynamicsAndNeuralSystems";
repo = "pycatch22";
rev = "refs/tags/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 ];
};
}

View File

@ -9003,6 +9003,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 { };