lol

python3Packages.pyvis: 0.3.1 -> 0.3.2

Diff: https://github.com/WestHealth/pyvis/compare/v0.3.1...v0.3.2

+18 -11
+18 -11
pkgs/development/python-modules/pyvis/default.nix
··· 6 6 , jinja2 7 7 , ipython 8 8 , jsonpickle 9 + , pytestCheckHook 9 10 , numpy 10 11 }: 11 12 12 13 buildPythonPackage rec { 13 14 pname = "pyvis"; 14 - version = "0.3.1"; 15 + version = "0.3.2"; 16 + format = "setuptools"; 15 17 16 18 src = fetchFromGitHub { 17 19 owner = "WestHealth"; 18 20 repo = pname; 19 21 rev = "refs/tags/v${version}"; 20 - hash = "sha256-h5in3759thWRlI8ubXUbrSuDtp1v/obmpUBZvOYk734="; 22 + hash = "sha256-eo9Mk2c0hrBarCrzwmkXha3Qt4Bl1qR7Lhl9EkUx96E="; 21 23 }; 22 24 23 - patches = [ 24 - # Fix test: https://github.com/WestHealth/pyvis/issues/138 25 - (fetchpatch { 26 - url = "https://github.com/WestHealth/pyvis/commit/eaa24b882401e2e74353efa78bf4e71a880cfc47.patch"; 27 - hash = "sha256-hyDypavoCM36SiuQda1U4FLUPdAjTIMtaeZ0KqfHKzI="; 28 - }) 25 + propagatedBuildInputs = [ 26 + jinja2 27 + networkx 28 + ipython 29 + jsonpickle 29 30 ]; 30 31 31 - propagatedBuildInputs = [ networkx jinja2 ipython jsonpickle ]; 32 + nativeCheckInputs = [ 33 + pytestCheckHook 34 + numpy 35 + ]; 32 36 33 - nativeCheckInputs = [ numpy ]; 37 + disabledTestPaths = [ 38 + # jupyter integration test with selenium and webdriver_manager 39 + "pyvis/tests/test_html.py" 40 + ]; 34 41 35 42 pythonImportsCheck = [ "pyvis" ]; 36 43 ··· 38 45 homepage = "https://github.com/WestHealth/pyvis"; 39 46 description = "Python package for creating and visualizing interactive network graphs"; 40 47 license = licenses.bsd3; 41 - maintainers = with maintainers; [ ]; 48 + maintainers = with maintainers; [ pbsds ]; 42 49 }; 43 50 }