1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "threadpool"; 8 version = "1.3.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "197gzrxn9lbk0q1v079814c6s05cr4rwzyl6c1m6inkyif4yzr6c"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://chrisarndt.de/projects/threadpool/"; 17 description = "Easy to use object-oriented thread pool framework"; 18 license = licenses.mit; 19 }; 20 21}