Files
nixpkgs/pkgs/development/python-modules/pyjson5/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

45 lines
872 B
Nix

{
lib,
buildPythonPackage,
cython,
fetchFromGitHub,
pythonOlder,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "pyjson5";
version = "1.6.6";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Kijewski";
repo = "pyjson5";
rev = "refs/tags/v${version}";
hash = "sha256-LNcz9JEOw6HO9eIf71w4NJdPOB4yixBfBeD7B/NLbfE=";
fetchSubmodules = true;
};
build-system = [
cython
setuptools
wheel
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "pyjson5" ];
meta = with lib; {
description = "JSON5 serializer and parser library";
homepage = "https://github.com/Kijewski/pyjson5";
changelog = "https://github.com/Kijewski/pyjson5/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}