Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / vine / default.nix
blob46330ac4247bbd1012fc950a0efc689da73745aa
1 { lib
2 , buildPythonPackage
3 , case
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     case
23     pytestCheckHook
24   ];
26   disabledTestPaths = [
27     # https://github.com/celery/vine/issues/106
28     "t/unit/test_synchronization.py"
29   ];
31   pythonImportsCheck = [
32     "vine"
33   ];
35   meta = with lib; {
36     description = "Python promises";
37     homepage = "https://github.com/celery/vine";
38     changelog = "https://github.com/celery/vine/releases/tag/v${version}";
39     license = licenses.bsd3;
40     maintainers = with maintainers; [ fab ];
41   };