python3Packages.boxx: init at 0.9.9
Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
parent
a27bb7859a
commit
d2b979b354
2 changed files with 59 additions and 0 deletions
57
pkgs/development/python-modules/boxx/default.nix
Normal file
57
pkgs/development/python-modules/boxx/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1304,6 +1304,8 @@ in {
|
||||||
|
|
||||||
bottleneck = callPackage ../development/python-modules/bottleneck { };
|
bottleneck = callPackage ../development/python-modules/bottleneck { };
|
||||||
|
|
||||||
|
boxx = callPackage ../development/python-modules/boxx { };
|
||||||
|
|
||||||
bpycv = callPackage ../development/python-modules/bpycv {};
|
bpycv = callPackage ../development/python-modules/bpycv {};
|
||||||
|
|
||||||
bpython = callPackage ../development/python-modules/bpython { };
|
bpython = callPackage ../development/python-modules/bpython { };
|
||||||
|
|
Loading…
Reference in a new issue