about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSoham Sen <contact@sohamsen.me>2022-08-23 15:38:01 +0530
committerSoham Sen <contact@sohamsen.me>2022-10-12 01:55:09 +0530
commit55edf1a08a4db3c68a798353bbd14905d039f844 (patch)
tree9dd8bbb37d5262594824966ed0ecee8634f17477 /pkgs
parent5e804cd8a27f835a402b22e086e36e797716ef8b (diff)
python3Packages.python3-application: 3.0.3 -> 3.0.4
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: