summary refs log tree commit diff
diff options
context:
space:
mode:
authorStefan Frijters <sfrijters@gmail.com>2021-07-27 21:23:55 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-07-27 22:07:16 -0700
commit0b91acaab17c1b5b91c49faaf526ea2fafa9bdf4 (patch)
treee27492745695b155d9e37ecdc71bbda2f0371c0b
parent87f2965a8bf4ee78fc6bc018a2f445b01547b77c (diff)
downloadnixpkgs-0b91acaab17c1b5b91c49faaf526ea2fafa9bdf4.tar
nixpkgs-0b91acaab17c1b5b91c49faaf526ea2fafa9bdf4.tar.gz
nixpkgs-0b91acaab17c1b5b91c49faaf526ea2fafa9bdf4.tar.bz2
nixpkgs-0b91acaab17c1b5b91c49faaf526ea2fafa9bdf4.tar.lz
nixpkgs-0b91acaab17c1b5b91c49faaf526ea2fafa9bdf4.tar.xz
nixpkgs-0b91acaab17c1b5b91c49faaf526ea2fafa9bdf4.tar.zst
nixpkgs-0b91acaab17c1b5b91c49faaf526ea2fafa9bdf4.zip
python3Packages.dbus-next: 0.2.2 -> 0.2.3
-rw-r--r--pkgs/development/python-modules/dbus-next/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/dbus-next/default.nix b/pkgs/development/python-modules/dbus-next/default.nix
index ba27b633fef..4786d8af0dd 100644
--- a/pkgs/development/python-modules/dbus-next/default.nix
+++ b/pkgs/development/python-modules/dbus-next/default.nix
@@ -2,23 +2,22 @@
 , buildPythonPackage
 , fetchFromGitHub
 , python
-, dbus, dbus-python, pytest, pytest-cov, pytest-asyncio, pytest-timeout
+, dbus, pytest, pytest-cov, pytest-asyncio, pytest-timeout
 }:
 
 buildPythonPackage rec {
   pname = "dbus-next";
-  version = "0.2.2";
+  version = "0.2.3";
 
   src = fetchFromGitHub {
     owner = "altdesktop";
     repo = "python-dbus-next";
     rev = "v${version}";
-    sha256 = "0x78ghkci4las13gwbrm8fzg671lx1q2cn8h0f64ki8yag1myia1";
+    sha256 = "sha256-EKEQZFRUe+E65Z6DNCJFL5uCI5kbXrN7Tzd4O0X5Cqo=";
   };
 
   checkInputs = [
     dbus
-    dbus-python
     pytest
     pytest-cov
     pytest-asyncio