Unverified Commit debfa672 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.boxx: disable on older Python releases

parent 7e2dc25c
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
@@ -13,16 +13,20 @@
, pyopengl
, seaborn
, pytorch
, pythonOlder
, torchvision
}:

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

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-1Q6wCloOCfyDmvC8VbK6GgfnxuliJ6Ze7UEvsNFBVa0=";
    hash = "sha256-1Q6wCloOCfyDmvC8VbK6GgfnxuliJ6Ze7UEvsNFBVa0=";
  };

  propagatedBuildInputs = [
@@ -37,19 +41,22 @@ buildPythonPackage rec {
    seaborn
  ];

  pythonImportsCheck = [ "boxx" ];
  checkInputs = [
    xvfb-run
    pytorch
    torchvision
  ];

  pythonImportsCheck = [
    "boxx"
  ];

  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.";
    description = "Tool-box for efficient build and debug for Scientific Computing and Computer Vision";
    homepage = "https://github.com/DIYer22/boxx";
    license = licenses.mit;
    maintainers = with maintainers; [ lucasew ];