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