1{
2 lib,
3 buildPythonPackage,
4 case,
5 fetchPypi,
6 pytestCheckHook,
7 pythonOlder,
8}:
9
10buildPythonPackage rec {
11 pname = "vine";
12 version = "5.1.0";
13 format = "setuptools";
14
15 disabled = pythonOlder "3.7";
16
17 src = fetchPypi {
18 inherit pname version;
19 hash = "sha256-i2LpgdNcQQSSEc9ioKEkLYwe6b0Vuxls44rv1nmeYeA=";
20 };
21
22 nativeCheckInputs = [
23 case
24 pytestCheckHook
25 ];
26
27 disabledTestPaths = [
28 # https://github.com/celery/vine/issues/106
29 "t/unit/test_synchronization.py"
30 ];
31
32 pythonImportsCheck = [ "vine" ];
33
34 meta = with lib; {
35 description = "Python promises";
36 homepage = "https://github.com/celery/vine";
37 changelog = "https://github.com/celery/vine/releases/tag/v${version}";
38 license = licenses.bsd3;
39 maintainers = with maintainers; [ fab ];
40 };
41}