32 lines
656 B
Nix
32 lines
656 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, ipython
|
|
, matplotlib
|
|
, numpy
|
|
, pillow
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mediapy";
|
|
version = "1.1.2";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-uz+Pv3DvmhDajIqNpCj+2HsRT7Dh7Ks5yryhiEa8KOI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ipython matplotlib numpy pillow ];
|
|
|
|
pythonImportsCheck = [ "mediapy" ];
|
|
|
|
meta = with lib; {
|
|
description = "Read/write/show images and videos in an IPython notebook";
|
|
homepage = "https://github.com/google/mediapy";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ mcwitt ];
|
|
};
|
|
}
|