15 buildPythonPackage rec {
18 format = "setuptools";
20 disabled = pythonOlder "3.7";
22 src = fetchFromGitHub {
24 repo = "python-license-check";
25 rev = "refs/tags/${version}";
26 hash = "sha256-2WJw5TVMjOr+GX4YV0nssOtQeYvDHBLnlWquJQWPL9I=";
29 propagatedBuildInputs = [
42 pythonImportsCheck = [ "liccheck" ];
45 description = "Check python packages from requirement.txt and report issues";
46 mainProgram = "liccheck";
47 homepage = "https://github.com/dhatim/python-license-check";
48 changelog = "https://github.com/dhatim/python-license-check/releases/tag/${version}";
49 license = licenses.asl20;
50 maintainers = with maintainers; [ fab ];