depot/third_party/nixpkgs/pkgs/development/python-modules/threadpool/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

21 lines
425 B
Nix

{ 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;
};
}