python3.pkgs.python-dbusmock: 0.18.3 -> 0.19
This commit is contained in:
parent
4b332228ff
commit
c17b04c48b
1 changed files with 7 additions and 5 deletions
|
@ -1,15 +1,17 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, runtimeShell,
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, runtimeShell,
|
||||
nose, dbus, dbus-python, pygobject3,
|
||||
which, pyflakes, pycodestyle, bluez, networkmanager
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-dbusmock";
|
||||
version = "0.18.3";
|
||||
version = "0.19";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "994a178268b6d74aeb158c0f155cd141e9a0cfae14226a764cd022c4949fe242";
|
||||
src = fetchFromGitHub {
|
||||
owner = "martinpitt";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "09j338lmrjabbd3fpajr4piz4r20sl33030szfsqfzlwrrmvkyi0";
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
|
|
Loading…
Reference in a new issue