3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/ipyvue/default.nix

32 lines
674 B
Nix
Raw Normal View History

2020-04-06 20:28:35 +01:00
{ lib
, isPy27
, buildPythonPackage
, fetchPypi
# Python Inputs
, ipywidgets
}:
buildPythonPackage rec {
pname = "ipyvue";
2020-07-31 09:56:40 +01:00
version = "1.3.4";
2020-04-06 20:28:35 +01:00
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:40 +01:00
sha256 = "009815638f33e67f0fd9cc4fa2087b2faa438e32703877ca14ecf9826508b724";
2020-04-06 20:28:35 +01:00
};
propagatedBuildInputs = [ ipywidgets ];
doCheck = false; # No tests in package or GitHub
pythonImportsCheck = [ "ipyvue" ];
meta = with lib; {
description = "Jupyter widgets base for Vue libraries.";
homepage = "https://github.com/mariobuikhuizen/ipyvuetify";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
};
}