587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
42 lines
803 B
Nix
42 lines
803 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, case
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "vine";
|
|
version = "5.1.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-i2LpgdNcQQSSEc9ioKEkLYwe6b0Vuxls44rv1nmeYeA=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
case
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# https://github.com/celery/vine/issues/106
|
|
"t/unit/test_synchronization.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"vine"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python promises";
|
|
homepage = "https://github.com/celery/vine";
|
|
changelog = "https://github.com/celery/vine/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|