Merge pull request #26232 from volhovM/update/scudcloud-1.58

scudcloud: 1.54 -> 1.58
This commit is contained in:
Arseniy Seroka 2017-05-30 13:22:39 +03:00 committed by GitHub
commit e919b2f78f

View file

@ -1,14 +1,12 @@
{ stdenv, fetchgit, python3Packages }:
{ stdenv, fetchurl, python3Packages }:
python3Packages.buildPythonPackage {
name = "scudcloud-1.44";
let version = "1.58";
in python3Packages.buildPythonPackage {
name = "scudcloud-${version}";
# Branch 254-port-to-qt5
# https://github.com/raelgc/scudcloud/commit/65c304416dfdd5f456fa6f7301432a953d5e12d0
src = fetchgit {
url = https://github.com/raelgc/scudcloud/;
rev = "65c304416dfdd5f456fa6f7301432a953d5e12d0";
sha256 = "0h1055y88kldqw31ayqfx9zsksgxsyqd8h0hwnhj80yn3jcx0rp6";
src = fetchurl {
url = "https://github.com/raelgc/scudcloud/archive/v${version}.tar.gz";
sha256 = "1j84qdc2j3dvl1nhrjqm0blc8ww723p9a6hqprkkp8alw77myq1l";
};
propagatedBuildInputs = with python3Packages; [ pyqt5 dbus-python ];