Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 6 additions & 26 deletions pkgs/development/python-modules/boxx/default.nix
Original file line number Diff line number Diff line change
@@ -1,60 +1,40 @@
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
python,
xvfb-run,
imageio,
matplotlib,
scikit-image,
numpy,
pandas,
imageio,
snakeviz,
pyopengl,
scikit-image,
seaborn,
torch,
pythonOlder,
torchvision,
snakeviz,
}:

buildPythonPackage rec {
pname = "boxx";
version = "0.10.14";
format = "setuptools";

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
hash = "sha256-unGnmPksEuqFXHTWJkj9Gv2G/qPDgT6AZXYiG2gtkEA=";
};

propagatedBuildInputs = [
imageio
matplotlib
scikit-image
numpy
pandas
imageio
snakeviz
pyopengl
scikit-image
seaborn
];

nativeCheckInputs = [
xvfb-run
torch
torchvision
snakeviz
];

pythonImportsCheck = [ "boxx" ];

doCheck = stdenv.hostPlatform.isLinux;

checkPhase = ''
xvfb-run ${python.interpreter} -m unittest
'';

meta = with lib; {
description = "Tool-box for efficient build and debug for Scientific Computing and Computer Vision";
homepage = "https://github.com/DIYer22/boxx";
Expand Down
1 change: 0 additions & 1 deletion pkgs/development/python-modules/bpycv/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ buildPythonPackage rec {
homepage = "https://github.com/DIYer22/bpycv";
license = licenses.mit;
maintainers = [ maintainers.lucasew ];
broken = stdenv.hostPlatform.isAarch64;
inherit (blender.meta) platforms;
};
}