summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiomisc
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-17 19:47:05 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-12-17 19:47:05 +0100
commite9c1876e9449e742e93584e68afdda63a01b2008 (patch)
treea7a704a6e4b155541cec45054aa5daea2a35a57b /pkgs/development/python-modules/aiomisc
parent9159658fae569ba7e6d9b09c373a2866bb4bb0d6 (diff)
downloadnixpkgs-e9c1876e9449e742e93584e68afdda63a01b2008.tar
nixpkgs-e9c1876e9449e742e93584e68afdda63a01b2008.tar.gz
nixpkgs-e9c1876e9449e742e93584e68afdda63a01b2008.tar.bz2
nixpkgs-e9c1876e9449e742e93584e68afdda63a01b2008.tar.lz
nixpkgs-e9c1876e9449e742e93584e68afdda63a01b2008.tar.xz
nixpkgs-e9c1876e9449e742e93584e68afdda63a01b2008.tar.zst
nixpkgs-e9c1876e9449e742e93584e68afdda63a01b2008.zip
python310Packages.aiomisc: 16.2 -> 16.2.10
Diffstat (limited to 'pkgs/development/python-modules/aiomisc')
-rw-r--r--pkgs/development/python-modules/aiomisc/default.nix25
1 files changed, 13 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/aiomisc/default.nix b/pkgs/development/python-modules/aiomisc/default.nix
index d1fd33eb618..d3c386eef7b 100644
--- a/pkgs/development/python-modules/aiomisc/default.nix
+++ b/pkgs/development/python-modules/aiomisc/default.nix
@@ -8,7 +8,7 @@
 , colorlog
 , croniter
 , fastapi
-, fetchFromGitHub
+, fetchPypi
 , logging-journald
 , pytestCheckHook
 , pythonOlder
@@ -20,16 +20,14 @@
 
 buildPythonPackage rec {
   pname = "aiomisc";
-  version = "16.2";
+  version = "16.2.10";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
-  src = fetchFromGitHub {
-    owner = "aiokitchen";
-    repo = pname;
-    rev = "refs/tags/v${version}";
-    hash = "sha256-wxm7MrFHZ7TrUGw5w7iLWs1olU8ZmJmJ7M/BZ6Nf0fU=";
+  src = fetchPypi {
+    inherit pname version;
+    hash = "sha256-iQlbd1DoPgxq+Am0BTDYXIBZoC21/54+bywDtcCXlls=";
   };
 
   propagatedBuildInputs = [
@@ -73,11 +71,14 @@ buildPythonPackage rec {
     "aiomisc"
   ];
 
-  disabledTestPaths = [
-    # Dependencies are not available at the moment
-    "tests/test_entrypoint.py"
-    "tests/test_raven_service.py"
-  ];
+  # Upstream stopped tagging with 16.2
+  doCheck = false;
+
+  # disabledTestPaths = [
+  #   # Dependencies are not available at the moment
+  #   "tests/test_entrypoint.py"
+  #   "tests/test_raven_service.py"
+  # ];
 
   meta = with lib; {
     description = "Miscellaneous utils for asyncio";