depot/third_party/nixpkgs/pkgs/development/python-modules/qimage2ndarray/default.nix
Default email e7f069c37c Project import generated by Copybara.
GitOrigin-RevId: 467ce5a9f45aaf96110b41eb863a56866e1c2c3c
2020-06-02 20:00:15 +02:00

32 lines
683 B
Nix

{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k
, numpy
, pyqt5
, nose
}:
buildPythonPackage rec {
pname = "qimage2ndarray";
version = "1.8.3";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "b02bd2dc7de774f954544312ec1020cf2d7e03fdd23ec9eb79901da55ccb3365";
};
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 ];
};
}