1 { buildPythonPackage, fetchFromGitHub, nose, pillow, scipy, numpy, imread, lib, stdenv }:
3 buildPythonPackage rec {
7 src = fetchFromGitHub {
11 sha256 = "0fjiyl82wj1a6xzr9mss2y2rydl4zchl2cbdbg0jm0fcrs99q4hw";
14 # remove this as soon as https://github.com/luispedro/mahotas/issues/97 is fixed
15 patches = [ ./disable-impure-tests.patch ];
17 propagatedBuildInputs = [ numpy imread pillow scipy ];
18 checkInputs = [ nose ];
24 disabled = stdenv.isi686; # Failing tests
27 description = "Computer vision package based on numpy";
28 homepage = "https://mahotas.readthedocs.io/";
29 maintainers = with maintainers; [ luispedro ];
30 license = licenses.mit;
31 platforms = platforms.unix;