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/click-threading/default.nix

34 lines
644 B

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, click
, isPy3k
, futures ? null
}:
buildPythonPackage rec {
pname = "click-threading";
version = "0.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-rc/mI8AqWVwQfDFAcvZ6Inj+TrQLcsDRoskDzHivNDk=";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ click ] ++ lib.optional (!isPy3k) futures;
checkPhase = ''
py.test
'';
# Tests are broken on 3.x
doCheck = !isPy3k;
meta = {
homepage = "https://github.com/click-contrib/click-threading/";
description = "Multithreaded Click apps made easy";
license = lib.licenses.mit;
};
}