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 homepage = "https://github.com/mrbean-bremen/ghrepo-stats";
46 changelog = "https://github.com/mrbean-bremen/ghrepo-stats/blob/v${version}/CHANGES.md";
47 license = licenses.mit;
48 maintainers = with maintainers; [ fab ];