lol

python3Packages.python3-application: init at 3.0.3

authored by

Charlie Hanley and committed by
Jonathan Ringer
857c478c 4af93eb0

+49
+47
pkgs/development/python-modules/python3-application/default.nix
··· 1 + { lib, isPy3k, buildPythonPackage, fetchFromGitHub, fetchpatch, zope_interface, twisted }: 2 + 3 + buildPythonPackage rec { 4 + pname = "python3-application"; 5 + version = "3.0.3"; 6 + 7 + disabled = !isPy3k; 8 + 9 + src = fetchFromGitHub { 10 + owner = "AGProjects"; 11 + repo = pname; 12 + rev = version; 13 + sha256 = "sha256-oscUI/Ag/UXmAi/LN1pPTdyqQe9aAfeQzhKFxaTmW3A="; 14 + }; 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/${pname}/commit/695f7d769e69c84e065872ffb403157d0af282fd.patch"; 21 + sha256 = "sha256-MGs8uUIFXkPXStOn5oCNNEMVmcKrq8YPl8Xvl3OTOUM="; 22 + }) 23 + ]; 24 + 25 + propagatedBuildInputs = [ zope_interface twisted ]; 26 + 27 + pythonImportsCheck = [ "application" ]; 28 + 29 + meta = with lib; { 30 + description = "A collection of modules that are useful when building python applications"; 31 + homepage = "https://github.com/AGProjects/python3-application"; 32 + license = licenses.lgpl21Plus; 33 + maintainers = with maintainers; [ chanley ]; 34 + longDescription = '' 35 + 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. 36 + The modules that the application package provides are: 37 + 1. process - UNIX process and signal management. 38 + 2. python - python utility classes and functions. 39 + 3. configuration - a simple interface to handle configuration files. 40 + 4. log - an extensible system logger for console and syslog. 41 + 5. debug - memory troubleshooting and execution timing. 42 + 6. system - interaction with the underlying operating system. 43 + 7. notification - an application wide notification system. 44 + 8. version - manage version numbers for applications and packages. 45 + ''; 46 + }; 47 + }
+2
pkgs/top-level/python-packages.nix
··· 7150 7150 7151 7151 pytest-xvfb = callPackage ../development/python-modules/pytest-xvfb { }; 7152 7152 7153 + python3-application = callPackage ../development/python-modules/python3-application { }; 7154 + 7153 7155 python3-eventlib = callPackage ../development/python-modules/python3-eventlib { }; 7154 7156 7155 7157 python3-openid = callPackage ../development/python-modules/python3-openid { };