Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchFromGitHub, zope_interface, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "python-application"; 5 version = "2.8.0"; 6 disabled = isPy3k; 7 8 src = fetchFromGitHub { 9 owner = "AGProjects"; 10 repo = pname; 11 rev = "release-${version}"; 12 sha256 = "1xd2gbpmx2ghap9cnr1h6sxjai9419bdp3y9qp5lh67977m0qg30"; 13 }; 14 15 buildInputs = [ zope_interface ]; 16 17 # No tests upstream to run 18 doCheck = false; 19 20 meta = with lib; { 21 description = "Basic building blocks for python applications"; 22 homepage = "https://github.com/AGProjects/python-application"; 23 changelog = "https://github.com/AGProjects/python-application/blob/master/ChangeLog"; 24 license = licenses.lgpl2Plus; 25 }; 26}