summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-02-12 04:20:00 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-12 10:32:56 -0800
commit252bc0f17c7ebe125da13dd6810cd4ce8e0aff3d (patch)
tree3a7e7825eaa933210e52362316887afe4b17a54b /pkgs/development
parent0bd0386954cfbb193062d96c6b6fb3228df022c9 (diff)
downloadnixpkgs-252bc0f17c7ebe125da13dd6810cd4ce8e0aff3d.tar
nixpkgs-252bc0f17c7ebe125da13dd6810cd4ce8e0aff3d.tar.gz
nixpkgs-252bc0f17c7ebe125da13dd6810cd4ce8e0aff3d.tar.bz2
nixpkgs-252bc0f17c7ebe125da13dd6810cd4ce8e0aff3d.tar.lz
nixpkgs-252bc0f17c7ebe125da13dd6810cd4ce8e0aff3d.tar.xz
nixpkgs-252bc0f17c7ebe125da13dd6810cd4ce8e0aff3d.tar.zst
nixpkgs-252bc0f17c7ebe125da13dd6810cd4ce8e0aff3d.zip
nvchecker: 2.5 -> 2.6.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/nvchecker/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/nvchecker/default.nix b/pkgs/development/python-modules/nvchecker/default.nix
index f8b434a7a12..73819188c49 100644
--- a/pkgs/development/python-modules/nvchecker/default.nix
+++ b/pkgs/development/python-modules/nvchecker/default.nix
@@ -5,7 +5,7 @@
 , pytestCheckHook
 , setuptools
 , packaging
-, toml
+, tomli
 , structlog
 , appdirs
 , pytest-asyncio
@@ -20,18 +20,18 @@
 
 buildPythonPackage rec {
   pname = "nvchecker";
-  version = "2.5";
+  version = "2.6.1";
 
   # Tests not included in PyPI tarball
   src = fetchFromGitHub {
     owner = "lilydjwg";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0jzmpra87dlj88d20ihnva9fj81wqbbd9qbzsjwwvzdx062136mg";
+    sha256 = "sha256-Lfo/VzsklEbv/kiKV5GbzvycwekqykRLrZBhehC1MjY=";
   };
 
   nativeBuildInputs = [ installShellFiles docutils ];
-  propagatedBuildInputs = [ setuptools packaging toml structlog appdirs tornado pycurl aiohttp ];
+  propagatedBuildInputs = [ setuptools packaging tomli structlog appdirs tornado pycurl aiohttp ];
   checkInputs = [ pytestCheckHook pytest-asyncio flaky pytest-httpbin ];
 
   disabled = pythonOlder "3.7";