13 buildPythonPackage rec {
14 pname = "check-manifest";
16 format = "setuptools";
18 disabled = pythonOlder "3.7";
21 inherit pname version;
22 hash = "sha256-ZKZARFVCzyJpGWV8e3jQLZwcpbHCXX5m4OH/MlBg9BY=";
25 propagatedBuildInputs = [
28 ] ++ lib.optionals (pythonOlder "3.11") [
42 # Test wants to setup a venv
43 "test_build_sdist_pep517_isolated"
46 pythonImportsCheck = [
51 description = "Check MANIFEST.in in a Python source package for completeness";
52 mainProgram = "check-manifest";
53 homepage = "https://github.com/mgedmin/check-manifest";
54 changelog = "https://github.com/mgedmin/check-manifest/blob/${version}/CHANGES.rst";
55 license = licenses.mit;
56 maintainers = with maintainers; [ lewo ];