···1-{ stdenv, lib, isPy3k, buildPythonPackage, fetchFromGitHub, fetchpatch, zope_interface, twisted }:
23buildPythonPackage rec {
4 pname = "python3-application";
5- version = "3.0.3";
67 disabled = !isPy3k;
89 src = fetchFromGitHub {
10 owner = "AGProjects";
11 repo = pname;
12- rev = version;
13- sha256 = "sha256-oscUI/Ag/UXmAi/LN1pPTdyqQe9aAfeQzhKFxaTmW3A=";
14 };
1516- 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 propagatedBuildInputs = [ zope_interface twisted ];
2627 pythonImportsCheck = [ "application" ];
···31 description = "A collection of modules that are useful when building python applications";
32 homepage = "https://github.com/AGProjects/python3-application";
33 license = licenses.lgpl21Plus;
34- maintainers = with maintainers; [ chanley ];
35 longDescription = ''
36 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 The modules that the application package provides are:
···1+{ stdenv, lib, isPy3k, buildPythonPackage, fetchFromGitHub, zope_interface, twisted }:
23buildPythonPackage rec {
4 pname = "python3-application";
5+ version = "3.0.4";
67 disabled = !isPy3k;
89 src = fetchFromGitHub {
10 owner = "AGProjects";
11 repo = pname;
12+ rev = "release-${version}";
13+ sha256 = "sha256-XXAKp/RlBVs3KmcnuiexdYfxf0zt2A/DrsJzdC9I4vA=";
14 };
1500000000016 propagatedBuildInputs = [ zope_interface twisted ];
1718 pythonImportsCheck = [ "application" ];
···22 description = "A collection of modules that are useful when building python applications";
23 homepage = "https://github.com/AGProjects/python3-application";
24 license = licenses.lgpl21Plus;
25+ maintainers = with maintainers; [ chanley yureien ];
26 longDescription = ''
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.
28 The modules that the application package provides are: