anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / vine / default.nix
blob91d884e21071470c790499aab4e3313aaf9296a5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "vine";
11   version = "5.1.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-i2LpgdNcQQSSEc9ioKEkLYwe6b0Vuxls44rv1nmeYeA=";
19   };
21   nativeCheckInputs = [
22     pytestCheckHook
23   ];
25   disabledTestPaths = [
26     # https://github.com/celery/vine/issues/106
27     "t/unit/test_synchronization.py"
28   ];
30   pythonImportsCheck = [ "vine" ];
32   meta = with lib; {
33     description = "Python promises";
34     homepage = "https://github.com/celery/vine";
35     changelog = "https://github.com/celery/vine/releases/tag/v${version}";
36     license = licenses.bsd3;
37     maintainers = with maintainers; [ fab ];
38   };