python3Packages.boxx: init at 0.9.9

Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
lucasew 2022-01-07 18:02:07 -03:00
parent a27bb7859a
commit d2b979b354
2 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,57 @@
{ lib
, buildPythonPackage
, fetchPypi
, python
, xvfb-run
, matplotlib
, scikitimage
, numpy
, pandas
, imageio
, snakeviz
, fn
, pyopengl
, seaborn
, pytorch
, torchvision
}:
buildPythonPackage rec {
pname = "boxx";
version = "0.9.9";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Mc6R6ruUVhFs2D0CTJsAiM9aGOusS973hRS5r2kQsy4=";
};
propagatedBuildInputs = [
matplotlib
scikitimage
numpy
pandas
imageio
snakeviz
fn
pyopengl
seaborn
];
pythonImportsCheck = [ "boxx" ];
checkInputs = [
xvfb-run
pytorch
torchvision
];
checkPhase = ''
xvfb-run ${python.interpreter} -m unittest
'';
meta = with lib; {
description = "Tool-box for efficient build and debug in Python. Especially for Scientific Computing and Computer Vision.";
homepage = "https://github.com/DIYer22/boxx";
license = licenses.mit;
maintainers = with maintainers; [ lucasew ];
};
}

View file

@ -1304,6 +1304,8 @@ in {
bottleneck = callPackage ../development/python-modules/bottleneck { };
boxx = callPackage ../development/python-modules/boxx { };
bpycv = callPackage ../development/python-modules/bpycv {};
bpython = callPackage ../development/python-modules/bpython { };