Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / mahotas / default.nix
blob818ff459985cdcb234e9f39fb439a42528ca5e45
1 { buildPythonPackage, fetchFromGitHub, nose, pillow, scipy, numpy, imread, lib, stdenv }:
3 buildPythonPackage rec {
4   pname = "mahotas";
5   version = "1.4.10";
7   src = fetchFromGitHub {
8     owner = "luispedro";
9     repo = "mahotas";
10     rev = "v${version}";
11     sha256 = "0fjiyl82wj1a6xzr9mss2y2rydl4zchl2cbdbg0jm0fcrs99q4hw";
12   };
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 ];
20   checkPhase= ''
21     python setup.py test
22   '';
24   disabled = stdenv.isi686; # Failing tests
26   meta = with lib; {
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;
32   };