1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
nixpkgs/pkgs/development/python-modules/qimage2ndarray/default.nix

33 lines
683 B
Nix
Raw Normal View History

{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k
, numpy
, pyqt5
, nose
}:
buildPythonPackage rec {
pname = "qimage2ndarray";
2019-12-29 09:28:09 +00:00
version = "1.8.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2019-12-29 09:28:09 +00:00
sha256 = "0f792693a0f1cd5f93fbf73bc3fb2d511fb9cceed3c9308bfb200f38c19a5545";
};
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 ];
};
}