nixpkgs/pkgs/development/python-modules/pycm/default.nix

36 lines
873 B
Nix
Raw Normal View History

2021-05-07 17:36:12 +00:00
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, matplotlib, numpy, pytest, seaborn }:
2020-01-06 22:26:35 +00:00
buildPythonPackage rec {
pname = "pycm";
2021-03-24 17:41:53 +00:00
version = "3.1";
2020-01-06 22:26:35 +00:00
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "sepandhaghighi";
repo = pname;
rev = "v${version}";
2021-03-24 17:41:53 +00:00
sha256 = "1aspd3vkjasb4wxs9czwjw42fmd4027wsmm4vlj09yp7sl57gary";
2020-01-06 22:26:35 +00:00
};
# remove a trivial dependency on the author's `art` Python ASCII art library
postPatch = ''
rm pycm/__main__.py
substituteInPlace setup.py --replace '=get_requires()' '=[]'
'';
checkInputs = [ pytest ];
2021-05-07 17:36:12 +00:00
propagatedBuildInputs = [ matplotlib numpy seaborn ];
2020-01-06 22:26:35 +00:00
checkPhase = ''
pytest Test/
'';
meta = with lib; {
2020-01-06 22:26:35 +00:00
description = "Multiclass confusion matrix library";
homepage = "https://pycm.ir";
2020-01-06 22:26:35 +00:00
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}