Merge pull request #187995 from Yureien/update/python3-application

authored by Sandro and committed by GitHub bfb44da6 af4dbb9b

+5 -14
+5 -14
pkgs/development/python-modules/python3-application/default.nix
··· 1 - { stdenv, lib, isPy3k, buildPythonPackage, fetchFromGitHub, fetchpatch, zope_interface, twisted }: 1 + { stdenv, lib, isPy3k, buildPythonPackage, fetchFromGitHub, zope_interface, twisted }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "python3-application"; 5 - version = "3.0.3"; 5 + version = "3.0.4"; 6 6 7 7 disabled = !isPy3k; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "AGProjects"; 11 11 repo = pname; 12 - rev = version; 13 - sha256 = "sha256-oscUI/Ag/UXmAi/LN1pPTdyqQe9aAfeQzhKFxaTmW3A="; 12 + rev = "release-${version}"; 13 + sha256 = "sha256-XXAKp/RlBVs3KmcnuiexdYfxf0zt2A/DrsJzdC9I4vA="; 14 14 }; 15 15 16 - patches = [ 17 - # Apply bugfix commit that is not yet part of a release 18 - (fetchpatch { 19 - name = "fix-time-import.patch"; 20 - url = "https://github.com/AGProjects/python3-application/commit/695f7d769e69c84e065872ffb403157d0af282fd.patch"; 21 - sha256 = "sha256-MGs8uUIFXkPXStOn5oCNNEMVmcKrq8YPl8Xvl3OTOUM="; 22 - }) 23 - ]; 24 - 25 16 propagatedBuildInputs = [ zope_interface twisted ]; 26 17 27 18 pythonImportsCheck = [ "application" ]; ··· 31 22 description = "A collection of modules that are useful when building python applications"; 32 23 homepage = "https://github.com/AGProjects/python3-application"; 33 24 license = licenses.lgpl21Plus; 34 - maintainers = with maintainers; [ chanley ]; 25 + maintainers = with maintainers; [ chanley yureien ]; 35 26 longDescription = '' 36 27 This package is a collection of modules that are useful when building python applications. Their purpose is to eliminate the need to divert resources into implementing the small tasks that every application needs to do in order to run successfully and focus instead on the application logic itself. 37 28 The modules that the application package provides are: