python310Packages.mathlibtools: 1.1.1 -> 1.1.2 (#188491)

* python310Packages.mathlibtools: 1.1.1 -> 1.1.2

* python310Packages.mathlibtools: add pythonImportsCheck

- add disabled

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
R. RyanTM 2022-08-30 00:19:56 -07:00 committed by GitHub
parent c4602e9be7
commit 70ea9f9ebf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,52 @@
{ lib, buildPythonPackage, fetchPypi, PyGithub, GitPython, toml, click, tqdm,
networkx, pydot, pyyaml, atomicwrites }:
{ lib
, atomicwrites
, buildPythonPackage
, click
, fetchPypi
, GitPython
, networkx
, pydot
, PyGithub
, pythonOlder
, pyyaml
, toml
, tqdm
}:
buildPythonPackage rec {
pname = "mathlibtools";
version = "1.1.1";
version = "1.1.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-0iW7SWIxb+Ek4T26hru5EgBgXfqRh6zOR73GAgLFNyE=";
hash = "sha256-Jbnb3FKyB1NAehB8tZxBV6d7JJCOgWZPMWMaFEAOzkM=";
};
propagatedBuildInputs = [
PyGithub GitPython toml click tqdm networkx pydot pyyaml atomicwrites
atomicwrites
click
GitPython
networkx
pydot
PyGithub
pyyaml
toml
tqdm
];
# requires internet access
# Requires internet access
doCheck = false;
pythonImportsCheck = [
"mathlibtools"
];
meta = with lib; {
description = "Supporting tool for Lean's mathlib";
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 ];
};