ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / imagecorruptions / default.nix
blobee1df820a401a73dda5abe43f9a183d0f5cd98c2
1 { buildPythonPackage
2 , fetchPypi
3 , numpy
4 , scikitimage
5 , lib
6 , opencv3
7 }:
9 buildPythonPackage rec {
10   pname = "imagecorruptions";
11   version = "1.1.2";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "044e173f24d5934899bdbf3596bfbec917e8083e507eed583ab217abebbe084d";
16   };
18   postPatch = ''
19     substituteInPlace setup.py \
20       --replace "'opencv-python >= 3.4.5'," ""
21   '';
23   propagatedBuildInputs = [
24     numpy
25     scikitimage
26     opencv3
27   ];
29   doCheck = false;
30   pythonImportsCheck = [ "imagecorruptions" ];
32   meta = with lib; {
33     homepage = "https://github.com/bethgelab/imagecorruptions";
34     description = "This package provides a set of image corruptions";
35     license = licenses.asl20;
36     maintainers = with maintainers; [ rakesh4g ];
37   };