ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / commentjson / default.nix
blobc1d3b8916d91b632955afb0ef9a2017aca1b01a2
1 { lib, buildPythonPackage, fetchFromGitHub, six, lark, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "commentjson";
5   version = "0.9.0";
7   src = fetchFromGitHub {
8     owner = "vaidik";
9     repo = "commentjson";
10     rev = "v${version}";
11     sha256 = "sha256-dPnIcv7TIeyG7rU938w7FrDklmaGuPpXz34uw/JjOgY=";
12   };
14   postPatch = ''
15     substituteInPlace setup.py \
16       --replace "lark-parser>=0.7.1,<0.8.0" "lark"
18     # NixOS is missing test.test_json module
19     rm -r commentjson/tests/test_json
20   '';
22   propagatedBuildInputs = [ lark six ];
24   checkInputs = [ pytestCheckHook ];
26   pythonImportsCheck = [ "commentjson" ];
28   meta = with lib; {
29     description = "Add JavaScript or Python style comments in JSON";
30     homepage = "https://github.com/vaidik/commentjson/";
31     license = licenses.mit;
32     maintainers = with maintainers; [ SuperSandro2000 ];
33   };