python3Packages.hg-commitsigs: drop (#513487)
This commit is contained in:
@@ -1,42 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
fetchhg,
|
||||
stdenv,
|
||||
python,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "hg-commitsigs";
|
||||
# Latest tag is 11 years old.
|
||||
version = "unstable-2021-01-08";
|
||||
|
||||
src = fetchhg {
|
||||
url = "https://foss.heptapod.net/mercurial/commitsigs";
|
||||
rev = "b53eb6862bff";
|
||||
sha256 = "sha256-PS1OhC9MiVFD7WYlIn6FavD5TyhM50WoV6YagI2pLxU=";
|
||||
};
|
||||
|
||||
# Not sure how the tests are supposed to be run, and they 10 years old...
|
||||
doCheck = false;
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/${python.sitePackages}/hgext3rd/
|
||||
install -D $src/commitsigs.py \
|
||||
$out/${python.sitePackages}/hgext3rd/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Automatic signing of changeset hashes";
|
||||
longDescription = ''
|
||||
This packages provides a Mercurial extension that lets you sign
|
||||
the changeset hash when you commit. The signature is embedded
|
||||
directly in the changeset itself; there wont be any extra
|
||||
commits. Either GnuPG or OpenSSL can be used to sign the hashes.
|
||||
'';
|
||||
homepage = "https://foss.heptapod.net/mercurial/commitsigs";
|
||||
maintainers = with lib.maintainers; [ yoctocell ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.unix; # same as Mercurial
|
||||
};
|
||||
}
|
||||
@@ -257,6 +257,7 @@ mapAliases {
|
||||
HAP-python = throw "'HAP-python' has been renamed to/replaced by 'hap-python'"; # Converted to throw 2025-10-29
|
||||
hcs_utils = throw "'hcs_utils' has been renamed to/replaced by 'hcs-utils'"; # Converted to throw 2025-10-29
|
||||
heif-image-plugin = throw "heif-image-plugin has been removed due to lack of upstream maintenance and breakage. Use `pillow-heif` instead."; # added 2025-09-17
|
||||
hg-commitsigs = throw "'hg-commitsigs' was removed because it was broken"; # Added 2026-04-25
|
||||
hglib = throw "'hglib' has been renamed to/replaced by 'python-hglib'"; # Converted to throw 2025-10-29
|
||||
hijri-converter = hijridate; # added 2025-08-07
|
||||
holistic-trace-analysis = throw "'holistic-trace-analysis' was removed because there is no such package on PyPI"; # added 2026-02-28
|
||||
|
||||
@@ -7131,8 +7131,6 @@ self: super: with self; {
|
||||
|
||||
hfst = callPackage ../development/python-modules/hfst { };
|
||||
|
||||
hg-commitsigs = callPackage ../development/python-modules/hg-commitsigs { };
|
||||
|
||||
hg-evolve = callPackage ../development/python-modules/hg-evolve { };
|
||||
|
||||
hg-git = callPackage ../development/python-modules/hg-git { };
|
||||
|
||||
Reference in New Issue
Block a user