ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / mediapy / default.nix
blob9b188f9c2a5918a4e49c19bc88ff4e6bc24b347e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , ipython
6 , matplotlib
7 , numpy
8 , pillow
9 }:
11 buildPythonPackage rec {
12   pname = "mediapy";
13   version = "1.1.0";
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-CejgiCiW7an1GpKB5MUiA1Alkigv3RmfTq0um9pc93E=";
20   };
22   propagatedBuildInputs = [ ipython matplotlib numpy pillow ];
24   pythonImportsCheck = [ "mediapy" ];
26   meta = with lib; {
27     description = "Read/write/show images and videos in an IPython notebook";
28     homepage = "https://github.com/google/mediapy";
29     license = licenses.asl20;
30     maintainers = with maintainers; [ mcwitt ];
31   };