blob: fba8bc9b0021193bea8b9ddc36cfc7b863a2191b (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
jaraco-classes,
more-itertools,
pytestCheckHook,
setuptools-scm,
setuptools,
}:
buildPythonPackage rec {
pname = "jaraco-functools";
version = "4.2.1";
pyproject = true;
src = fetchPypi {
pname = "jaraco_functools";
inherit version;
hash = "sha256-vmNKv8yrzlb6MFP4x+vje2gmg6Tud5NnDO0XurAIc1M=";
};
postPatch = ''
sed -i "/coherent\.licensed/d" pyproject.toml
'';
build-system = [
setuptools
setuptools-scm
];
dependencies = [ more-itertools ];
nativeCheckInputs = [
jaraco-classes
pytestCheckHook
];
# test is flaky on darwin
disabledTests = if stdenv.hostPlatform.isDarwin then [ "test_function_throttled" ] else null;
pythonNamespaces = [ "jaraco" ];
pythonImportsCheck = [ "jaraco.functools" ];
meta = {
description = "Additional functools in the spirit of stdlib's functools";
homepage = "https://github.com/jaraco/jaraco.functools";
changelog = "https://github.com/jaraco/jaraco.functools/blob/v${version}/NEWS.rst";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|