10 buildPythonPackage rec {
11 pname = "click-threading";
13 format = "setuptools";
16 inherit pname version;
17 hash = "sha256-rc/mI8AqWVwQfDFAcvZ6Inj+TrQLcsDRoskDzHivNDk=";
20 nativeCheckInputs = [ pytest ];
21 propagatedBuildInputs = [ click ] ++ lib.optional (!isPy3k) futures;
27 # Tests are broken on 3.x
31 homepage = "https://github.com/click-contrib/click-threading/";
32 description = "Multithreaded Click apps made easy";
33 license = lib.licenses.mit;