mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-16 13:00:41 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
35 lines
879 B
Nix
35 lines
879 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, six, lark, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "commentjson";
|
|
version = "0.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vaidik";
|
|
repo = "commentjson";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-dPnIcv7TIeyG7rU938w7FrDklmaGuPpXz34uw/JjOgY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "lark-parser>=0.7.1,<0.8.0" "lark"
|
|
|
|
# NixOS is missing test.test_json module
|
|
rm -r commentjson/tests/test_json
|
|
'';
|
|
|
|
propagatedBuildInputs = [ lark six ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "commentjson" ];
|
|
|
|
meta = with lib; {
|
|
description = "Add JavaScript or Python style comments in JSON";
|
|
homepage = "https://github.com/vaidik/commentjson/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|