about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-10-06 05:46:21 -0500
committerGitHub <noreply@github.com>2020-10-06 05:46:21 -0500
commit8a834c9b274c834819c423b9956259b0fd68ad4f (patch)
treee73611449d03d9cf41d45db58258d49e7d526ccb /pkgs
parente712e0603d6eb36d42c5a8d01023f28af56e6673 (diff)
parentfc64051addbb59fb9bfadebc75351ed19869a0d2 (diff)
Merge pull request #99679 from marsam/update-nvchecker
nvchecker: 2.0 -> 2.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/nvchecker/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/nvchecker/default.nix b/pkgs/development/python-modules/nvchecker/default.nix
index 4208439075148..e85fc4693aeec 100644
--- a/pkgs/development/python-modules/nvchecker/default.nix
+++ b/pkgs/development/python-modules/nvchecker/default.nix
@@ -2,14 +2,14 @@
 
 buildPythonPackage rec {
   pname = "nvchecker";
-  version = "2.0";
+  version = "2.1";
 
   # Tests not included in PyPI tarball
   src = fetchFromGitHub {
     owner = "lilydjwg";
     repo = pname;
     rev = "v${version}";
-    sha256 = "13wa95pvivbyshq3ys12iyvn8wlyzxfia8l6xh3fd46a2cs9x9g7";
+    sha256 = "0zf9vhf8ka0v1mf1xhbvkc2nr54m0rkiw1i68ps4sgx2mdj6qrfk";
   };
 
   propagatedBuildInputs = [ setuptools toml structlog appdirs tornado pycurl aiohttp ];