mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 15:13:46 +00:00
164036d728
Tested on Linux Tested Binary Execution
26 lines
657 B
Nix
26 lines
657 B
Nix
{ stdenv
|
|
, fetchurl
|
|
, pythonPackages
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication (rec {
|
|
name = "${pname}-${version}";
|
|
pname = "buildbot-worker";
|
|
version = "0.9.0rc3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
|
|
sha256 = "0wqn2176rk7hc27r4hfy5qnxp0nr9iis5nyzg5x07xljnsspnhy1";
|
|
};
|
|
|
|
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;
|
|
};
|
|
})
|