nixpkgs/pkgs/development/python-modules/mathlibtools/default.nix

27 lines
737 B
Nix
Raw Normal View History

2020-08-29 15:45:53 +02:00
{ lib, buildPythonPackage, fetchPypi, PyGithub, GitPython, toml, click, tqdm,
2021-11-04 17:59:56 +01:00
networkx, pydot, pyyaml, atomicwrites }:
2020-08-29 15:45:53 +02:00
buildPythonPackage rec {
pname = "mathlibtools";
version = "1.1.0";
2020-08-29 15:45:53 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "789f070f35424e89e4f2e2c007382250133cc48877627e37c5c463bcf4a1b58a";
2020-08-29 15:45:53 +02:00
};
propagatedBuildInputs = [
2021-11-04 17:59:56 +01:00
PyGithub GitPython toml click tqdm networkx pydot pyyaml atomicwrites
2020-08-29 15:45:53 +02:00
];
# 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 ];
};
}