pythonPackages.ipympl: init at 0.3.3
This commit is contained in:
parent
a9ee0b3bb8
commit
e1f484fe0e
24
pkgs/development/python-modules/ipympl/default.nix
Normal file
24
pkgs/development/python-modules/ipympl/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, ipywidgets, matplotlib }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "ipympl";
|
||||||
|
version = "0.3.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0m5sh2ha9hlgigc5xxsy7nd0gdadx797h1i66i9z616p0r43gx7d";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ ipywidgets matplotlib ];
|
||||||
|
|
||||||
|
# There are no unit tests in repository
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "ipympl" "ipympl.backend_nbagg" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Matplotlib Jupyter Extension";
|
||||||
|
homepage = https://github.com/matplotlib/jupyter-matplotlib;
|
||||||
|
maintainers = with maintainers; [ jluttine ];
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
}
|
@ -804,6 +804,8 @@ in {
|
|||||||
|
|
||||||
inquirer = callPackage ../development/python-modules/inquirer { };
|
inquirer = callPackage ../development/python-modules/inquirer { };
|
||||||
|
|
||||||
|
ipympl = callPackage ../development/python-modules/ipympl { };
|
||||||
|
|
||||||
itanium_demangler = callPackage ../development/python-modules/itanium_demangler { };
|
itanium_demangler = callPackage ../development/python-modules/itanium_demangler { };
|
||||||
|
|
||||||
janus = callPackage ../development/python-modules/janus { };
|
janus = callPackage ../development/python-modules/janus { };
|
||||||
|
Loading…
Reference in New Issue
Block a user