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