about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-09-16 13:26:43 +0200
committerGitHub <noreply@github.com>2023-09-16 13:26:43 +0200
commit9b06a110a836df561f98629718deb1db6044d139 (patch)
tree98eba9022220ef5a8d858d015c6e36df0c5bd5d0
parentf4a5c321c5561635935f49de57eb2be3c4c12044 (diff)
parente2e7ca9bb398636d93904d20634ffe051aeff26e (diff)
Merge pull request #255449 from fabaff/beautiful-date-bump
python311Packages.beautiful-date: 2.2.0 -> 2.3.0
-rw-r--r--pkgs/development/python-modules/beautiful-date/default.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/beautiful-date/default.nix b/pkgs/development/python-modules/beautiful-date/default.nix
index 5b114655bcbbc..22f69a728539f 100644
--- a/pkgs/development/python-modules/beautiful-date/default.nix
+++ b/pkgs/development/python-modules/beautiful-date/default.nix
@@ -1,6 +1,7 @@
 { lib
 , buildPythonPackage
 , fetchFromGitHub
+, freezegun
 , python-dateutil
 , pytestCheckHook
 , pythonOlder
@@ -8,16 +9,16 @@
 
 buildPythonPackage rec {
   pname = "beautiful-date";
-  version = "2.2.0";
+  version = "2.3.0";
   format = "setuptools";
 
-  disable = pythonOlder "3.6";
+  disable = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "kuzmoyev";
     repo = "beautiful-date";
-    rev = "v${version}";
-    hash = "sha256-5xRmHaAPf1ps75cOINHkHT1aYb5UGLZGl0OHVQaMES0=";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-e6YJBaDwWqVehxBPOvsIdV4FIXlIwj29H5untXGJvT0=";
   };
 
   propagatedBuildInputs = [
@@ -25,13 +26,16 @@ buildPythonPackage rec {
   ];
 
   nativeCheckInputs = [
+    freezegun
     pytestCheckHook
   ];
 
-  pythonImportsCheck = [ "beautiful_date" ];
+  pythonImportsCheck = [
+    "beautiful_date"
+  ];
 
   meta = with lib; {
-    description = "Simple and beautiful way to create date and datetime objects in Python";
+    description = "Simple and beautiful way to create date and datetime objects";
     homepage = "https://github.com/kuzmoyev/beautiful-date";
     license = licenses.mit;
     maintainers = with maintainers; [ mbalatsko ];