1{ buildPythonPackage, fetchPypi, atpublic, zope_interface, nose2 }: 2 3buildPythonPackage rec { 4 pname = "flufl.bounce"; 5 version = "4.0"; 6 7 buildInputs = [ nose2 ]; 8 propagatedBuildInputs = [ atpublic zope_interface ]; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "sha256-JVBK65duwP5aGc1sQTo0EMtRT9zb3Kn5tdjTQ6hgODE="; 13 }; 14}