mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
37 lines
722 B
Nix
37 lines
722 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, pkg-config
|
|
, libjpeg
|
|
, libpng
|
|
, libtiff
|
|
, libwebp
|
|
, numpy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-imread";
|
|
version = "0.7.0";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "imread";
|
|
sha256 = "0yb0fmy6ilh5fvbk69wl2bzqgss2g0951668mx8z9yyj4jhr1z2y";
|
|
};
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ nose libjpeg libpng libtiff libwebp ];
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
meta = with lib; {
|
|
description = "Python package to load images as numpy arrays";
|
|
homepage = "https://imread.readthedocs.io/en/latest/";
|
|
maintainers = with maintainers; [ luispedro ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
}
|