blob: 45c8ed59fabdc0d91ddfc845d11cecbbe8197d05 (
plain) (
blame)
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
55
56
57
58
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
mock,
pytestCheckHook,
python,
pythonOlder,
setuptools,
setuptools-scm,
which,
}:
buildPythonPackage rec {
pname = "nodeenv";
version = "1.9.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ekalinin";
repo = "nodeenv";
rev = "refs/tags/${version}";
hash = "sha256-nud8HSfx1ri0UZf25VPCy7swfaSM13u5+HzozK+ikeY=";
};
build-system = [
setuptools
setuptools-scm
];
nativeCheckInputs = [
mock
pytestCheckHook
];
preFixup = ''
substituteInPlace $out/${python.sitePackages}/nodeenv.py \
--replace '["which", candidate]' '["${lib.getBin which}/bin/which", candidate]'
'';
pythonImportsCheck = [ "nodeenv" ];
disabledTests = [
# Test requires coverage
"test_smoke"
];
meta = with lib; {
description = "Node.js virtual environment builder";
mainProgram = "nodeenv";
homepage = "https://github.com/ekalinin/nodeenv";
changelog = "https://github.com/ekalinin/nodeenv/releases/tag/${version}";
license = licenses.bsd3;
maintainers = [ ];
};
}
|