python3Packages.python3-application: 3.0.3 -> 3.0.4

main
Soham Sen 2 years ago
parent 5e804cd8a2
commit 55edf1a08a
  1. 19
      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:

Loading…
Cancel
Save