10 buildPythonPackage rec {
11 pname = "ghrepo-stats";
13 format = "setuptools";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
18 owner = "mrbean-bremen";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-Mr0FM2CbdgAUF8siMjUIZvypWiPNPU9OncPiBPqK3uE=";
25 # https://github.com/mrbean-bremen/ghrepo-stats/pull/1
26 substituteInPlace setup.py \
27 --replace "bs4" "beautifulsoup4"
30 propagatedBuildInputs = [
39 pythonImportsCheck = [
44 description = "Python module and CLI tool for GitHub repo statistics";
45 mainProgram = "show-ghstats";
46 homepage = "https://github.com/mrbean-bremen/ghrepo-stats";
47 changelog = "https://github.com/mrbean-bremen/ghrepo-stats/blob/v${version}/CHANGES.md";
48 license = licenses.mit;
49 maintainers = with maintainers; [ fab ];