Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / threadpool / default.nix
blob9c83e7e45c28747d1ee20b86605aed2b8c136620
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "threadpool";
8   version = "1.3.2";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "197gzrxn9lbk0q1v079814c6s05cr4rwzyl6c1m6inkyif4yzr6c";
13   };
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   };