Files
nixpkgs/pkgs/development/python-modules/grip/default.nix
Winter a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e458
2025-04-08 02:57:25 -04:00

67 lines
1.3 KiB
Nix

{
lib,
fetchFromGitHub,
fetchpatch,
# Python bits:
buildPythonPackage,
pytest,
responses,
docopt,
flask,
markdown,
path-and-address,
pygments,
requests,
tabulate,
}:
buildPythonPackage rec {
pname = "grip";
version = "4.6.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "joeyespo";
repo = "grip";
rev = "v${version}";
hash = "sha256-CHL2dy0H/i0pLo653F7aUHFvZHTeZA6jC/rwn1KrEW4=";
};
patches = [
# https://github.com/NixOS/nixpkgs/issues/288478
(fetchpatch {
name = "set-default-encoding.patch";
url = "https://github.com/joeyespo/grip/commit/2784eb2c1515f1cdb1554d049d48b3bff0f42085.patch";
hash = "sha256-veVJKJtt8mP1jmseRD7pNR3JgIxX1alYHyQok/rBpiQ=";
})
];
nativeCheckInputs = [
pytest
responses
];
propagatedBuildInputs = [
docopt
flask
markdown
path-and-address
pygments
requests
tabulate
];
checkPhase = ''
export PATH="$PATH:$out/bin"
py.test -xm "not assumption"
'';
meta = with lib; {
description = "Preview GitHub Markdown files like Readme locally before committing them";
mainProgram = "grip";
homepage = "https://github.com/joeyespo/grip";
license = licenses.mit;
maintainers = with maintainers; [ koral ];
};
}