Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, PyGithub, GitPython, toml, click, tqdm, 2 paramiko, networkx, pydot, pyyaml }: 3 4buildPythonPackage rec { 5 pname = "mathlibtools"; 6 version = "0.0.10"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0d708bgsxjhhchqc56afi1h7k87vbfn7v40f4y1zlv7hsjc69s36"; 11 }; 12 13 propagatedBuildInputs = [ 14 PyGithub GitPython toml click tqdm paramiko networkx pydot pyyaml 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}