gebner has been an amazing maintainer, but appears to have moved on: the last commit on nixpkgs appears to have been in Feb 2023, and they have not been responding to pings (e.g. https://github.com/NixOS/nixpkgs/issues/347764). They also approved https://github.com/NixOS/nixpkgs/pull/337292 before, but that PR had some additional changes and was closed without merging. This PR is in no way intended to diminuish Gabriel's accomplishments, and they're welcome to just say so if they'd prefer this PR not to be merged. Also, even if it's merged, of course they're always welcome to return to activity and be added back. The intent of this PR is to give more realistic expectations around the maintainership of these packages, and to invite others to step up for maintainership if they rely on those packages. This seems in line with https://github.com/NixOS/nixpkgs/tree/master/maintainers#how-to-lose-maintainer-status
55 lines
1005 B
Nix
55 lines
1005 B
Nix
{
|
|
lib,
|
|
atomicwrites,
|
|
buildPythonPackage,
|
|
click,
|
|
fetchPypi,
|
|
gitpython,
|
|
networkx,
|
|
pydot,
|
|
pygithub,
|
|
pythonOlder,
|
|
pyyaml,
|
|
toml,
|
|
tqdm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mathlibtools";
|
|
version = "1.3.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-mkn0y3NV/acnkqVzi8xd+Sex4QLvxxmt++FtsZmgrGs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
atomicwrites
|
|
click
|
|
gitpython
|
|
networkx
|
|
pydot
|
|
pygithub
|
|
pyyaml
|
|
toml
|
|
tqdm
|
|
];
|
|
|
|
# Requires internet access
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "mathlibtools" ];
|
|
|
|
meta = with lib; {
|
|
description = "Supporting tool for Lean's mathlib";
|
|
mainProgram = "leanproject";
|
|
homepage = "https://github.com/leanprover-community/mathlib-tools";
|
|
changelog = "https://github.com/leanprover-community/mathlib-tools/raw/v${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|