2016-10-04 18:20:09 +01:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
2016-08-10 00:08:01 +01:00
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication (rec {
|
2016-09-16 00:16:23 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-worker";
|
2016-10-21 22:04:48 +01:00
|
|
|
version = "0.9.0.post1";
|
2016-08-10 00:08:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-16 00:16:23 +01:00
|
|
|
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
|
2016-10-21 22:04:48 +01:00
|
|
|
sha256 = "1f8ij3y62r9z7qv92x21rg9h9whhakkwv59rgniq09j64ggjz8lx";
|
2016-08-10 00:08:01 +01: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 18:20:09 +01:00
|
|
|
license = licenses.gpl2;
|
2016-08-10 00:08:01 +01:00
|
|
|
};
|
|
|
|
})
|