blob: 9e77a03aa930d86930ec6b9d18dae726c4581988 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
hatchling,
}:
buildPythonPackage rec {
pname = "hatch-nodejs-version";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "agoose77";
repo = "hatch-nodejs-version";
tag = "v${version}";
hash = "sha256-Oe07HFzhhnAGTWM51xSgRmpJgIZg0oMIxkmMxKRPMwI=";
};
propagatedBuildInputs = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "hatch_nodejs_version" ];
meta = {
description = "Plugins for dealing with NodeJS versions";
homepage = "https://github.com/agoose77/hatch-nodejs-version";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ cpcloud ];
};
}
|