lol

Merge pull request #14644 from micxjo/update-nvpy

nvpy: 0.9.2 -> 0.9.7

+3 -2
+3 -2
pkgs/applications/editors/nvpy/default.nix
··· 1 1 { pkgs, fetchurl, tk, buildPythonApplication, pythonPackages }: 2 2 3 3 buildPythonApplication rec { 4 - version = "0.9.2"; 4 + version = "0.9.7"; 5 5 name = "nvpy-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/cpbotha/nvpy/archive/v${version}.tar.gz"; 9 - sha256 = "78e41b80fc5549cba8cfd92b52d6530e8dfc8e8f37e96e4b219f30c266af811d"; 9 + sha256 = "1rd3vlaqkg16iz6qcw6rkbq0jmyvc0843wa3brnvn1nz0kla243f"; 10 10 }; 11 11 12 12 buildInputs = [tk]; ··· 14 14 propagatedBuildInputs = [ 15 15 pythonPackages.markdown 16 16 pythonPackages.tkinter 17 + pythonPackages.docutils 17 18 ]; 18 19 19 20 postInstall = ''