My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/threadpool/default.nix

21 lines
425 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "threadpool";
version = "1.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "197gzrxn9lbk0q1v079814c6s05cr4rwzyl6c1m6inkyif4yzr6c";
};
meta = with lib; {
homepage = "https://chrisarndt.de/projects/threadpool/";
description = "Easy to use object-oriented thread pool framework";
license = licenses.mit;
};
}