Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mediapy / default.nix
blobbd8ccc0e78fca3385c3cfbfd56d8e0dc4e8a4e43
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , flit-core
6 , ipython
7 , matplotlib
8 , numpy
9 , pillow
12 buildPythonPackage rec {
13   pname = "mediapy";
14   version = "1.2.0";
15   pyproject = true;
17   disabled = pythonOlder "3.8";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-enxOx0hZ+fksk8ibsDWg0Bl/cJeSBHE37bN/D1ucECg=";
22   };
24   nativeBuildInputs = [
25     flit-core
26   ];
28   propagatedBuildInputs = [
29     ipython
30     matplotlib
31     numpy
32     pillow
33   ];
35   pythonImportsCheck = [
36     "mediapy"
37   ];
39   meta = with lib; {
40     description = "Read/write/show images and videos in an IPython notebook";
41     homepage = "https://github.com/google/mediapy";
42     changelog = "https://github.com/google/mediapy/releases/tag/v${version}";
43     license = licenses.asl20;
44     maintainers = with maintainers; [ mcwitt ];
45   };