buildbot: 2.8.0 -> 2.8.1
This commit is contained in:
committed by
Dmitry Kalinkin
parent
c6a8c32613
commit
b783e570ac
@@ -1,4 +1,4 @@
|
||||
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, fetchpatch, makeWrapper, isPy3k,
|
||||
{ stdenv, lib, buildPythonPackage, fetchPypi, fetchpatch, makeWrapper, isPy3k,
|
||||
python, twisted, jinja2, zope_interface, future, sqlalchemy,
|
||||
sqlalchemy_migrate, dateutil, txaio, autobahn, pyjwt, pyyaml, treq,
|
||||
txrequests, pyjade, boto3, moto, mock, python-lz4, setuptoolsTrial,
|
||||
@@ -25,17 +25,12 @@ let
|
||||
|
||||
package = buildPythonPackage rec {
|
||||
pname = "buildbot";
|
||||
version = "2.8.0";
|
||||
version = "2.8.1";
|
||||
|
||||
# tests fail with the 2.8.0 sdist, so fetchFromGitHub instead
|
||||
# https://github.com/buildbot/buildbot/pull/5322
|
||||
src = fetchFromGitHub {
|
||||
owner = "buildbot";
|
||||
repo = "buildbot";
|
||||
rev = "v${version}";
|
||||
sha256 = "0akd61mgjp53c3vyf2yyzd0xf0cjwpvsi7g8pz72xrvnil1s4w7k";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1nrbn8a2c56l5j0axmn9ijaviw0a6nrd34sg81r5j05mzzpb69is";
|
||||
};
|
||||
sourceRoot = "./source/master";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# core
|
||||
|
||||
Reference in New Issue
Block a user