about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-05-08 14:17:49 +0200
committerGitHub <noreply@github.com>2022-05-08 14:17:49 +0200
commit3a80ba55f5b616c73b44fc09d8bce8ad22e6c0e6 (patch)
tree6ce3ab7dd46562891ecf04d57501c6146c01a29b /pkgs
parentc6fc7d09d431fc515e3a56ad2ac3ee8494a4d7c9 (diff)
parent8d9b3b3a243151309ce603552c0f99cca0d14912 (diff)
Merge pull request #172054 from r-ryantm/auto-update/python3.10-linkify-it-py
python310Packages.linkify-it-py: 1.0.3 -> 2.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/linkify-it-py/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/linkify-it-py/default.nix b/pkgs/development/python-modules/linkify-it-py/default.nix
index ef97439cdc86a..54f71fe2ec2be 100644
--- a/pkgs/development/python-modules/linkify-it-py/default.nix
+++ b/pkgs/development/python-modules/linkify-it-py/default.nix
@@ -8,7 +8,7 @@
 
 buildPythonPackage rec {
   pname = "linkify-it-py";
-  version = "1.0.3";
+  version = "2.0.0";
   format = "setuptools";
 
   disabled = pythonOlder "3.6";
@@ -16,8 +16,8 @@ buildPythonPackage rec {
   src = fetchFromGitHub {
     owner = "tsutsu3";
     repo = pname;
-    rev = "v${version}";
-    hash = "sha256-1QqfqFdTEdZr02jQnmHmvw3fgnC/ktsfALyhtkGSXoY=";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-3bgkhIC6tHl5zieiyllvqFCKwLms55m8MGt1xGhQ4Dk=";
   };
 
   propagatedBuildInputs = [ uc-micro-py ];