mathlibtools: init at 0.0.10
This commit is contained in:
parent
6141b50dd5
commit
67a280c90b
26
pkgs/development/python-modules/mathlibtools/default.nix
Normal file
26
pkgs/development/python-modules/mathlibtools/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -25981,6 +25981,7 @@ in
|
||||
lean2 = callPackage ../applications/science/logic/lean2 {};
|
||||
lean3 = lean;
|
||||
elan = callPackage ../applications/science/logic/elan {};
|
||||
mathlibtools = with python3Packages; toPythonApplication mathlibtools;
|
||||
|
||||
leo2 = callPackage ../applications/science/logic/leo2 {
|
||||
ocaml = ocaml-ng.ocamlPackages_4_01_0.ocaml;};
|
||||
|
@ -992,6 +992,8 @@ in {
|
||||
|
||||
matchpy = callPackage ../development/python-modules/matchpy { };
|
||||
|
||||
mathlibtools = callPackage ../development/python-modules/mathlibtools {};
|
||||
|
||||
maxminddb = callPackage ../development/python-modules/maxminddb { };
|
||||
|
||||
mininet-python = (toPythonModule (pkgs.mininet.override{ inherit python; })).py;
|
||||
|
Loading…
Reference in New Issue
Block a user