python3packages.qimage2ndarray: init at 1.8
This commit is contained in:
parent
70d788cf18
commit
af596113d1
32
pkgs/development/python-modules/qimage2ndarray/default.nix
Normal file
32
pkgs/development/python-modules/qimage2ndarray/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4943,6 +4943,8 @@ in {
|
|||||||
|
|
||||||
qds_sdk = callPackage ../development/python-modules/qds_sdk { };
|
qds_sdk = callPackage ../development/python-modules/qds_sdk { };
|
||||||
|
|
||||||
|
qimage2ndarray = callPackage ../development/python-modules/qimage2ndarray { };
|
||||||
|
|
||||||
quamash = callPackage ../development/python-modules/quamash { };
|
quamash = callPackage ../development/python-modules/quamash { };
|
||||||
|
|
||||||
quandl = callPackage ../development/python-modules/quandl { };
|
quandl = callPackage ../development/python-modules/quandl { };
|
||||||
|
Loading…
Reference in New Issue
Block a user