1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "pastedeploy"; 9 version = "2.1.1"; 10 11 src = fetchFromGitHub { 12 owner = "Pylons"; 13 repo = pname; 14 rev = version; 15 sha256 = "sha256-9/8aM/G/EdapCZJlx0ZPzNbmw2uYjA1zGbNWJAWoeCU="; 16 }; 17 18 checkInputs = [ pytestCheckHook ]; 19 20 meta = with lib; { 21 description = "Load, configure, and compose WSGI applications and servers"; 22 homepage = "https://github.com/Pylons/pastedeploy"; 23 license = licenses.mit; 24 maintainers = teams.openstack.members; 25 }; 26}