blob: 87c7972f15d7f57daca1d71922046e23a4132c28 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
invoke,
mock,
pytest7CheckHook,
pytest-cov-stub,
setuptools,
sphinx-rtd-theme,
typing-extensions,
}:
buildPythonPackage rec {
pname = "pydash";
version = "8.0.5";
pyproject = true;
src = fetchFromGitHub {
owner = "dgilland";
repo = "pydash";
tag = "v${version}";
hash = "sha256-u8vLE0kjsnV2HNt3N3kmnaabgQzW3FcH4qxycNdv1Ls=";
};
build-system = [ setuptools ];
dependencies = [ typing-extensions ];
nativeCheckInputs = [
invoke
mock
pytest7CheckHook
pytest-cov-stub
sphinx-rtd-theme
];
pythonImportsCheck = [ "pydash" ];
disabledTestPaths = [
# Disable mypy testing
"tests/pytest_mypy_testing/"
];
meta = {
description = "Python utility libraries for doing stuff in a functional way";
homepage = "https://pydash.readthedocs.io";
changelog = "https://github.com/dgilland/pydash/blob/v${version}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|