Merge pull request #189194 from lopsided98/buildbot-update

authored by Sandro and committed by GitHub ed4e28b2 c3013493

+12 -17
+3 -8
pkgs/development/python-modules/buildbot/default.nix
··· 1 - { stdenv, lib, buildPythonPackage, fetchpatch, fetchPypi, makeWrapper, isPy3k 2 , python, twisted, jinja2, msgpack, zope_interface, sqlalchemy, alembic 3 , python-dateutil, txaio, autobahn, pyjwt, pyyaml, treq, txrequests, pypugjs 4 , boto3, moto, mock, lz4, setuptoolsTrial ··· 32 33 package = buildPythonPackage rec { 34 pname = "buildbot"; 35 - version = "3.5.0"; 36 37 src = fetchPypi { 38 inherit pname version; 39 - sha256 = "sha256-woGHdCan5qTp00toNkWa821EgVQMrPK+OWXoqFcgIDQ="; 40 }; 41 42 propagatedBuildInputs = [ ··· 78 # This patch disables the test that tries to read /etc/os-release which 79 # is not accessible in sandboxed builds. 80 ./skip_test_linux_distro.patch 81 - (fetchpatch{ 82 - url = "https://github.com/buildbot/buildbot/commit/54b8f62902122b0091319a96d0f9edd4195ab4c6.patch"; 83 - stripLen = 1; 84 - sha256 = "sha256-OqW3ZQK0bfqPG3YlrBbrSEEKsM/XqY2NO862ZD/DgHs="; 85 - }) 86 ]; 87 88 postPatch = ''
··· 1 + { stdenv, lib, buildPythonPackage, fetchPypi, makeWrapper, isPy3k 2 , python, twisted, jinja2, msgpack, zope_interface, sqlalchemy, alembic 3 , python-dateutil, txaio, autobahn, pyjwt, pyyaml, treq, txrequests, pypugjs 4 , boto3, moto, mock, lz4, setuptoolsTrial ··· 32 33 package = buildPythonPackage rec { 34 pname = "buildbot"; 35 + version = "3.6.0"; 36 37 src = fetchPypi { 38 inherit pname version; 39 + sha256 = "sha256-C8KXh+4bsf0zE8PCTwK3H/0pMP762I26quQiyHVkr2A="; 40 }; 41 42 propagatedBuildInputs = [ ··· 78 # This patch disables the test that tries to read /etc/os-release which 79 # is not accessible in sandboxed builds. 80 ./skip_test_linux_distro.patch 81 ]; 82 83 postPatch = ''
+1 -1
pkgs/development/python-modules/buildbot/pkg.nix
··· 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "sha256-CYbMixfZZ1xypV0J7TW54n/fja9RGMlWiF7StJYFnqM="; 10 }; 11 12 postPatch = ''
··· 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-+48r7VUl7r8u3aWE0+Uwk28DMhdwz02iqq76M7MgY+k="; 10 }; 11 12 postPatch = ''
+5 -5
pkgs/development/python-modules/buildbot/plugins.nix
··· 7 8 src = fetchPypi { 9 inherit pname version; 10 - sha256 = "sha256-boa/MWi/HAhNU3/n96i0fuoQ+jT5I+dWoe1Zd7f/Yvs="; 11 }; 12 13 # Remove unneccessary circular dependency on buildbot ··· 34 35 src = fetchPypi { 36 inherit pname version; 37 - sha256 = "sha256-NUDTwgkQuasOlJxNTlvfIm99LNVCrRIdBmgeJnwkSU8="; 38 }; 39 40 buildInputs = [ buildbot-pkg ]; ··· 56 57 src = fetchPypi { 58 inherit pname version; 59 - sha256 = "sha256-EmiIDCG4iFIwFnwii8fjII7C7wsBifzeZeW7HyY04dE="; 60 }; 61 62 buildInputs = [ buildbot-pkg ]; ··· 78 79 src = fetchPypi { 80 inherit pname version; 81 - sha256 = "sha256-QcS8QJ17uzDvkynTczj05LojuIT6feGiQNCwCESbVLw="; 82 }; 83 84 buildInputs = [ buildbot-pkg ]; ··· 100 101 src = fetchPypi { 102 inherit pname version; 103 - sha256 = "sha256-U9ecRxpDowzjD4GsrW4FUHcbNaWeAFGKDlqMrbIoTrQ="; 104 }; 105 106 buildInputs = [ buildbot-pkg ];
··· 7 8 src = fetchPypi { 9 inherit pname version; 10 + sha256 = "sha256-ivdjwZYHsovZu1HQ5tc+k7ScB4OdonOcTSuMXKKeU10="; 11 }; 12 13 # Remove unneccessary circular dependency on buildbot ··· 34 35 src = fetchPypi { 36 inherit pname version; 37 + sha256 = "sha256-SebskFsLZUHTi9lS9DbG8ZKQqjls+e25xvqqK7LZaMw="; 38 }; 39 40 buildInputs = [ buildbot-pkg ]; ··· 56 57 src = fetchPypi { 58 inherit pname version; 59 + sha256 = "sha256-HWhKEzjzAYJZsd31701NuHOvImwnxFM8dLvE7fqpIRM="; 60 }; 61 62 buildInputs = [ buildbot-pkg ]; ··· 78 79 src = fetchPypi { 80 inherit pname version; 81 + sha256 = "sha256-jGBdrVcxNpWdFT9aXO/KX/ZG/oXlWmlvpIFFSrVQ9pk="; 82 }; 83 84 buildInputs = [ buildbot-pkg ]; ··· 100 101 src = fetchPypi { 102 inherit pname version; 103 + sha256 = "sha256-8dvhVKbwTug78+14FGFyRj7AX3QpbveC4PHzc1yk03w="; 104 }; 105 106 buildInputs = [ buildbot-pkg ];
+1 -1
pkgs/development/python-modules/buildbot/worker.nix
··· 28 29 src = fetchPypi { 30 inherit pname version; 31 - sha256 = "sha256-HZH3TdH5dhr3f6ev25O3SgPPNbiFGMmAp9DHwcb/2MA="; 32 }; 33 34 postPatch = ''
··· 28 29 src = fetchPypi { 30 inherit pname version; 31 + sha256 = "sha256-WTvap1dx7OMim4UIZrfZVxrAWxPBwbRH6qdfO038bts="; 32 }; 33 34 postPatch = ''
+1 -1
pkgs/development/python-modules/pytest-asyncio/default.nix
··· 54 meta = with lib; { 55 description = "Library for testing asyncio code with pytest"; 56 homepage = "https://github.com/pytest-dev/pytest-asyncio"; 57 - changelog = "https://github.com/pytest-dev/pytest-asyncio/blob/${src.rev}/CHANGELOG.rst"; 58 license = licenses.asl20; 59 maintainers = with maintainers; [ dotlambda ]; 60 };
··· 54 meta = with lib; { 55 description = "Library for testing asyncio code with pytest"; 56 homepage = "https://github.com/pytest-dev/pytest-asyncio"; 57 + changelog = "https://github.com/pytest-dev/pytest-asyncio/blob/v${version}/CHANGELOG.rst"; 58 license = licenses.asl20; 59 maintainers = with maintainers; [ dotlambda ]; 60 };
+1 -1
pkgs/tools/typesetting/asciidoc/default.nix
··· 282 fromSource 283 ] ++ lib.optional _enableDitaaFilter binaryBytecode; 284 homepage = "https://asciidoc-py.github.io/"; 285 - changelog = "https://github.com/asciidoc-py/asciidoc-py/blob/${src.rev}/CHANGELOG.adoc"; 286 license = licenses.gpl2Plus; 287 platforms = platforms.unix; 288 maintainers = with maintainers; [ bjornfor dotlambda ];
··· 282 fromSource 283 ] ++ lib.optional _enableDitaaFilter binaryBytecode; 284 homepage = "https://asciidoc-py.github.io/"; 285 + changelog = "https://github.com/asciidoc-py/asciidoc-py/blob/${version}/CHANGELOG.adoc"; 286 license = licenses.gpl2Plus; 287 platforms = platforms.unix; 288 maintainers = with maintainers; [ bjornfor dotlambda ];