about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mathlibtools/default.nix
blob: 517d74563aea23850095d0ad59b76ca36714e3bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildPythonPackage, fetchPypi, PyGithub, GitPython, toml, click, tqdm,
  networkx, pydot, pyyaml, atomicwrites }:

buildPythonPackage rec {
  pname = "mathlibtools";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "789f070f35424e89e4f2e2c007382250133cc48877627e37c5c463bcf4a1b58a";
  };

  propagatedBuildInputs = [
    PyGithub GitPython toml click tqdm networkx pydot pyyaml atomicwrites
  ];

  # requires internet access
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/leanprover-community/mathlib-tools";
    description = "leanproject is a supporting tool for Lean's mathlib";
    license = licenses.asl20;
    maintainers = with maintainers; [ gebner ];
  };
}