about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-10-11 23:19:00 +0200
committerGitHub <noreply@github.com>2022-10-11 23:19:00 +0200
commitbfb44da6a499f57181719c226ce8dc3bae70c299 (patch)
tree9ea9a55f9cd49f8847e97930d83fb6dd6a70055c /pkgs
parentaf4dbb9b205ee1047795076096b0d64443580dcc (diff)
parent55edf1a08a4db3c68a798353bbd14905d039f844 (diff)
Merge pull request #187995 from Yureien/update/python3-application
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/python3-application/default.nix19
1 files changed, 5 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/python3-application/default.nix b/pkgs/development/python-modules/python3-application/default.nix
index ed3d6e6e7fef4..22cb820ea61ed 100644
--- a/pkgs/development/python-modules/python3-application/default.nix
+++ b/pkgs/development/python-modules/python3-application/default.nix
@@ -1,27 +1,18 @@
-{ stdenv, lib, isPy3k, buildPythonPackage, fetchFromGitHub, fetchpatch, zope_interface, twisted }:
+{ stdenv, lib, isPy3k, buildPythonPackage, fetchFromGitHub, zope_interface, twisted }:
 
 buildPythonPackage rec {
   pname = "python3-application";
-  version = "3.0.3";
+  version = "3.0.4";
 
   disabled = !isPy3k;
 
   src = fetchFromGitHub {
     owner = "AGProjects";
     repo = pname;
-    rev = version;
-    sha256 = "sha256-oscUI/Ag/UXmAi/LN1pPTdyqQe9aAfeQzhKFxaTmW3A=";
+    rev = "release-${version}";
+    sha256 = "sha256-XXAKp/RlBVs3KmcnuiexdYfxf0zt2A/DrsJzdC9I4vA=";
   };
 
-  patches = [
-    # Apply bugfix commit that is not yet part of a release
-    (fetchpatch {
-      name = "fix-time-import.patch";
-      url = "https://github.com/AGProjects/python3-application/commit/695f7d769e69c84e065872ffb403157d0af282fd.patch";
-      sha256 = "sha256-MGs8uUIFXkPXStOn5oCNNEMVmcKrq8YPl8Xvl3OTOUM=";
-    })
-  ];
-
   propagatedBuildInputs = [ zope_interface twisted ];
 
   pythonImportsCheck = [ "application" ];
@@ -31,7 +22,7 @@ buildPythonPackage rec {
     description = "A collection of modules that are useful when building python applications";
     homepage = "https://github.com/AGProjects/python3-application";
     license = licenses.lgpl21Plus;
-    maintainers = with maintainers; [ chanley ];
+    maintainers = with maintainers; [ chanley yureien ];
     longDescription = ''
       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.
       The modules that the application package provides are: