1{ lib, buildPythonPackage, fetchdarcs, zope_interface, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "python-application"; 5 version = "2.0.2"; 6 disabled = isPy3k; 7 8 src = fetchdarcs { 9 url = "http://devel.ag-projects.com/repositories/${pname}"; 10 rev = "release-${version}"; 11 sha256 = "19dszv44py8qrq0jcjdycxpa7z2p8hi3ijq9gnqdsazbbjzf9svn"; 12 }; 13 14 buildInputs = [ zope_interface ]; 15 16 meta = with lib; { 17 description = "Basic building blocks for python applications"; 18 homepage = https://github.com/AGProjects/python-application; 19 license = licenses.lgpl2Plus; 20 }; 21}