1{ lib
2, buildPythonPackage
3, case
4, fetchPypi
5, pytestCheckHook
6, pythonOlder
7}:
8
9buildPythonPackage rec {
10 pname = "vine";
11 version = "5.0.0";
12 format = "setuptools";
13
14 disabled = pythonOlder "3.6";
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-fTsWJKlT2oLvY0YgE7vScdPrdXUUifmAdZjo80C9Y34=";
19 };
20
21 checkInputs = [
22 case
23 pytestCheckHook
24 ];
25
26 pythonImportsCheck = [
27 "vine"
28 ];
29
30 meta = with lib; {
31 description = "Python promises";
32 homepage = "https://github.com/celery/vine";
33 license = licenses.bsd3;
34 maintainers = with maintainers; [ fab ];
35 };
36}