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