nixpkgs/pkgs/development/python-modules/pycm/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

61 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, matplotlib
, numpy
, pytestCheckHook
, pythonOlder
, seaborn
}:
buildPythonPackage rec {
pname = "pycm";
version = "3.7";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "sepandhaghighi";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-Yow5MVbaBgKA7U6RNpS/Yh1mG3XSLKPSDsUeBRSln1U=";
};
propagatedBuildInputs = [
matplotlib
numpy
seaborn
];
nativeCheckInputs = [
pytestCheckHook
];
postPatch = ''
# Remove a trivial dependency on the author's `art` Python ASCII art library
rm pycm/__main__.py
# Also depends on python3Packages.notebook
rm Otherfiles/notebook_check.py
substituteInPlace setup.py \
--replace '=get_requires()' '=[]'
'';
disabledTests = [
# Output formatting error
"pycm.pycm_compare.Compare"
"plot_test"
];
pythonImportsCheck = [
"pycm"
];
meta = with lib; {
description = "Multiclass confusion matrix library";
homepage = "https://pycm.ir";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}