Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / threadpool / default.nix
blob4b08fd7acef834970fb9d1bf5bae90a7b142c196
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "threadpool";
8   version = "1.3.2";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "197gzrxn9lbk0q1v079814c6s05cr4rwzyl6c1m6inkyif4yzr6c";
14   };
16   meta = with lib; {
17     homepage = "https://chrisarndt.de/projects/threadpool/";
18     description = "Easy to use object-oriented thread pool framework";
19     license = licenses.mit;
20   };