nixpkgs/pkgs/development/python-modules/check-manifest/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

59 lines
1.1 KiB
Nix

{ lib
, breezy
, build
, buildPythonPackage
, fetchPypi
, git
, pep517
, pytestCheckHook
, tomli
, pythonOlder
}:
buildPythonPackage rec {
pname = "check-manifest";
version = "0.49";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ZKZARFVCzyJpGWV8e3jQLZwcpbHCXX5m4OH/MlBg9BY=";
};
propagatedBuildInputs = [
build
pep517
] ++ lib.optionals (pythonOlder "3.11") [
tomli
];
nativeCheckInputs = [
git
pytestCheckHook
];
checkInputs = [
breezy
];
disabledTests = [
# Test wants to setup a venv
"test_build_sdist_pep517_isolated"
];
pythonImportsCheck = [
"check_manifest"
];
meta = with lib; {
description = "Check MANIFEST.in in a Python source package for completeness";
mainProgram = "check-manifest";
homepage = "https://github.com/mgedmin/check-manifest";
changelog = "https://github.com/mgedmin/check-manifest/blob/${version}/CHANGES.rst";
license = licenses.mit;
maintainers = with maintainers; [ lewo ];
};
}