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