nixpkgs/pkgs/development/python-modules/jstyleson/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

33 lines
756 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jstyleson";
version = "0.0.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "linjackson78";
repo = "jstyleson";
# https://github.com/linjackson78/jstyleson/issues/6
rev = "544b9fdb43339cdd15dd03dc69a6d0f36dd73241";
hash = "sha256-s/0DDfy+07TuUNjHPqKRT3xMMQl6spZCacB7Dweof7A=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "jstyleson" ];
meta = with lib; {
description = "A python library to parse JSON with js-style comments";
homepage = "https://github.com/linjackson78/jstyleson";
license = licenses.mit;
maintainers = with maintainers; [ ambroisie ];
};
}