2016-10-04 19:20:09 +02:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
2016-08-10 01:08:01 +02:00
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication (rec {
|
2016-09-16 01:16:23 +02:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-worker";
|
2016-10-04 19:20:09 +02:00
|
|
|
version = "0.9.0rc4";
|
2016-08-10 01:08:01 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-16 01:16:23 +02:00
|
|
|
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
|
2016-10-04 19:20:09 +02:00
|
|
|
sha256 = "1fv40pki1awv5f2z9vd7phjk7dlsy1cp4blsy2vdhqwbc7112a8c";
|
2016-08-10 01:08:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = with pythonPackages; [ setuptoolsTrial mock ];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ twisted future ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot Worker Daemon";
|
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
|
|
|
platforms = platforms.all;
|
2016-10-04 19:20:09 +02:00
|
|
|
license = licenses.gpl2;
|
2016-08-10 01:08:01 +02:00
|
|
|
};
|
|
|
|
})
|