nixpkgs/pkgs/development/python-modules/mediapy/default.nix
2023-01-05 01:10:14 +01:00

33 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 ];
};
}