summary refs log tree commit diff
path: root/pkgs/development/python-modules/qimage2ndarray/default.nix
blob: 73a0004e6546c1754b30eaa0700eb1c589c623f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k
, numpy
, pyqt5
, nose
}:

buildPythonPackage rec {
  pname = "qimage2ndarray";
  version = "1.8";
  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "7b9eb08a9be27f5439289d90d7d5a5942aad403d5634fe336eb915678c65db48";
  };

  checkInputs = [
    nose
  ];

  propagatedBuildInputs = [
    numpy
    pyqt5
  ];

  meta = {
    homepage = "https://github.com/hmeine/qimage2ndarray";
    description = "A small python extension for quickly converting between QImages and numpy.ndarrays (in both directions)";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ tbenst ];
  };
}