evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / threadpool / default.nix
blobd3e0499b03546cdaff2a3c46affc62ca9a0b00ef
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "threadpool";
9   version = "1.3.2";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "197gzrxn9lbk0q1v079814c6s05cr4rwzyl6c1m6inkyif4yzr6c";
15   };
17   meta = with lib; {
18     homepage = "https://chrisarndt.de/projects/threadpool/";
19     description = "Easy to use object-oriented thread pool framework";
20     license = licenses.mit;
21   };