ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / ipyvue / default.nix
blob6c0b15c41b37e69cc18748e916869dc11662955b
1 { lib
2 , isPy27
3 , buildPythonPackage
4 , fetchPypi
5   # Python Inputs
6 , ipywidgets
7 }:
9 buildPythonPackage rec {
10   pname = "ipyvue";
11   version = "1.7.0";
13   disabled = isPy27;
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "fa8ff9b9a73b5a925c4af4c05f1839df2bd0fae0063871f403ee821792d5ab72";
18   };
20   propagatedBuildInputs = [ ipywidgets ];
22   doCheck = false;  # No tests in package or GitHub
23   pythonImportsCheck = [ "ipyvue" ];
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   };