summary refs log blame commit diff
path: root/pkgs/development/python-modules/threadpool/default.nix
blob: a604302add1e947ff09a7312a3abdfce18918664 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                    
                                                          




                                                                      
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "threadpool";
  version = "1.3.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "197gzrxn9lbk0q1v079814c6s05cr4rwzyl6c1m6inkyif4yzr6c";
  };

  meta = with stdenv.lib; {
    homepage = https://chrisarndt.de/projects/threadpool/;
    description = "Easy to use object-oriented thread pool framework";
    license = licenses.mit;
  };

}