summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-03-20 23:58:46 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-03-20 23:58:46 +0100
commit00796dccffa01959c9a53604ef569acc97cb2a68 (patch)
tree0a6fbec183679ed5abafa8e8b26950d7ebd5739a
parent07200c01bac52b36caa0987e7b011d79fa31b491 (diff)
downloadnixpkgs-00796dccffa01959c9a53604ef569acc97cb2a68.tar
nixpkgs-00796dccffa01959c9a53604ef569acc97cb2a68.tar.gz
nixpkgs-00796dccffa01959c9a53604ef569acc97cb2a68.tar.bz2
nixpkgs-00796dccffa01959c9a53604ef569acc97cb2a68.tar.lz
nixpkgs-00796dccffa01959c9a53604ef569acc97cb2a68.tar.xz
nixpkgs-00796dccffa01959c9a53604ef569acc97cb2a68.tar.zst
nixpkgs-00796dccffa01959c9a53604ef569acc97cb2a68.zip
python3Packages.aioridwell: 2021.12.2 -> 2022.03.0
-rw-r--r--pkgs/development/python-modules/aioridwell/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/aioridwell/default.nix b/pkgs/development/python-modules/aioridwell/default.nix
index 7c3def1ec55..2b4cb28bbb5 100644
--- a/pkgs/development/python-modules/aioridwell/default.nix
+++ b/pkgs/development/python-modules/aioridwell/default.nix
@@ -17,7 +17,7 @@
 
 buildPythonPackage rec {
   pname = "aioridwell";
-  version = "2021.12.2";
+  version = "2022.03.0";
   format = "pyproject";
 
   disabled = pythonOlder "3.8";
@@ -26,7 +26,7 @@ buildPythonPackage rec {
     owner = "bachya";
     repo = pname;
     rev = version;
-    sha256 = "sha256-QFUXWleHRMBgaRsMNt2xFb3XcbCNI2kKQHKCBrUuG6Q=";
+    hash = "sha256-UiHT1YbBb9UTughVw2oJxRtvhUDVqQWqEcXMEXwy2cI=";
   };
 
   nativeBuildInputs = [
@@ -49,12 +49,6 @@ buildPythonPackage rec {
     types-pytz
   ];
 
-  postPatch = ''
-    substituteInPlace pyproject.toml \
-      --replace 'titlecase = "^2.3"' 'titlecase = "*"' \
-      --replace 'pytz = "^2021.3"' 'pytz = "*"'
-  '';
-
   disabledTests = [
     # AssertionError: assert datetime.date(...
     "test_get_next_pickup_event"