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