1{ lib 2, buildPythonPackage 3, fetchPypi 4, plaster 5, pastedeploy 6, pytestCheckHook 7}: 8 9buildPythonPackage rec { 10 pname = "plaster-pastedeploy"; 11 version = "1.0.1"; 12 13 src = fetchPypi { 14 pname = "plaster_pastedeploy"; 15 inherit version; 16 hash = "sha256-viYubS5BpyZIddqi/ihQy7BhVyi83JKCj9xyc244FBI="; 17 }; 18 19 propagatedBuildInputs = [ plaster pastedeploy ]; 20 21 nativeCheckInputs = [ pytestCheckHook ]; 22 23 meta = with lib; { 24 description = "PasteDeploy binding to the plaster configuration loader"; 25 homepage = "https://github.com/Pylons/plaster_pastedeploy"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ ]; 28 }; 29}