1{ lib, buildPythonPackage, fetchPypi, PyGithub, GitPython, toml, click, tqdm,
2 networkx, pydot, pyyaml, atomicwrites }:
3
4buildPythonPackage rec {
5 pname = "mathlibtools";
6 version = "1.1.0";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "789f070f35424e89e4f2e2c007382250133cc48877627e37c5c463bcf4a1b58a";
11 };
12
13 propagatedBuildInputs = [
14 PyGithub GitPython toml click tqdm networkx pydot pyyaml atomicwrites
15 ];
16
17 # requires internet access
18 doCheck = false;
19
20 meta = with lib; {
21 homepage = "https://github.com/leanprover-community/mathlib-tools";
22 description = "leanproject is a supporting tool for Lean's mathlib";
23 license = licenses.asl20;
24 maintainers = with maintainers; [ gebner ];
25 };
26}