Merge pull request #96608 from gebner/leanproject

mathlibtools: init at 0.0.10
This commit is contained in:
Gabriel Ebner
2020-08-29 17:58:17 +02:00
committed by GitHub
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchPypi, PyGithub, GitPython, toml, click, tqdm,
paramiko, networkx, pydot, pyyaml }:
buildPythonPackage rec {
pname = "mathlibtools";
version = "0.0.10";
src = fetchPypi {
inherit pname version;
sha256 = "0d708bgsxjhhchqc56afi1h7k87vbfn7v40f4y1zlv7hsjc69s36";
};
propagatedBuildInputs = [
PyGithub GitPython toml click tqdm paramiko networkx pydot pyyaml
];
# 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 ];
};
}