My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/imagecorruptions/default.nix

38 lines
771 B

{ buildPythonPackage
, fetchPypi
, numpy
, scikitimage
, lib
, opencv3
}:
buildPythonPackage rec {
pname = "imagecorruptions";
version = "1.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "044e173f24d5934899bdbf3596bfbec917e8083e507eed583ab217abebbe084d";
};
postPatch = ''
substituteInPlace setup.py \
--replace "'opencv-python >= 3.4.5'," ""
'';
propagatedBuildInputs = [
numpy
scikitimage
opencv3
];
doCheck = false;
pythonImportsCheck = [ "imagecorruptions" ];
meta = with lib; {
homepage = "https://github.com/bethgelab/imagecorruptions";
description = "This package provides a set of image corruptions";
license = licenses.asl20;
maintainers = with maintainers; [ rakesh4g ];
};
}