Merge pull request #275703 from r-ryantm/auto-update/python310Packages.mediapy

python310Packages.mediapy: 1.1.9 -> 1.2.0
This commit is contained in:
Fabian Affolter 2023-12-21 14:18:08 +01:00 committed by GitHub
commit cff0b2872e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,26 +11,35 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "mediapy"; pname = "mediapy";
version = "1.1.9"; version = "1.2.0";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-WUOxtE0NfXi0fpdasZTqixPhVV2+Refatvf6dgCb0Z8="; hash = "sha256-enxOx0hZ+fksk8ibsDWg0Bl/cJeSBHE37bN/D1ucECg=";
}; };
nativeBuildInputs = [ flit-core ]; nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [ ipython matplotlib numpy pillow ]; propagatedBuildInputs = [
ipython
matplotlib
numpy
pillow
];
pythonImportsCheck = [
pythonImportsCheck = [ "mediapy" ]; "mediapy"
];
meta = with lib; { meta = with lib; {
description = "Read/write/show images and videos in an IPython notebook"; description = "Read/write/show images and videos in an IPython notebook";
homepage = "https://github.com/google/mediapy"; homepage = "https://github.com/google/mediapy";
changelog = "https://github.com/google/mediapy/releases/tag/v${version}";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ mcwitt ]; maintainers = with maintainers; [ mcwitt ];
}; };