Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 674 B view raw
1{ lib 2, isPy27 3, buildPythonPackage 4, fetchPypi 5 # Python Inputs 6, ipywidgets 7}: 8 9buildPythonPackage rec { 10 pname = "ipyvue"; 11 version = "1.4.0"; 12 13 disabled = isPy27; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "3253727e8e12e3c157550e3e8d6986edf61ad0d68299992fbf3fa6acec41a12e"; 18 }; 19 20 propagatedBuildInputs = [ ipywidgets ]; 21 22 doCheck = false; # No tests in package or GitHub 23 pythonImportsCheck = [ "ipyvue" ]; 24 25 meta = with lib; { 26 description = "Jupyter widgets base for Vue libraries."; 27 homepage = "https://github.com/mariobuikhuizen/ipyvuetify"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ drewrisinger ]; 30 }; 31}