depot/third_party/nixpkgs/pkgs/development/python-modules/mediapy/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

43 lines
833 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
flit-core,
ipython,
matplotlib,
numpy,
pillow,
}:
buildPythonPackage rec {
pname = "mediapy";
version = "1.2.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-enxOx0hZ+fksk8ibsDWg0Bl/cJeSBHE37bN/D1ucECg=";
};
nativeBuildInputs = [ flit-core ];
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";
changelog = "https://github.com/google/mediapy/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ mcwitt ];
};
}