ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / json5 / default.nix
blob683811e0df5c9aec66ac5781ebc1d456d699f1cd
1 { buildPythonPackage
2 , fetchFromGitHub
3 , hypothesis
4 , lib
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "json5";
10   version = "0.9.9";
12   src = fetchFromGitHub {
13     owner = "dpranke";
14     repo = "pyjson5";
15     rev = "v${version}";
16     hash = "sha256-0ommoTv5q7YuLNF+ZPWW/Xg/8CwnPrF7rXJ+eS0joUs=";
17   };
19   checkInputs = [
20     hypothesis
21     pytestCheckHook
22   ];
24   pythonImportsCheck = [
25     "json5"
26   ];
28   meta = with lib; {
29     homepage = "https://github.com/dpranke/pyjson5";
30     description = "A Python implementation of the JSON5 data format";
31     license = licenses.asl20;
32     maintainers = with maintainers; [ veehaitch ];
33   };