2021-03-03 10:01:42 +00:00
|
|
|
{ lib
|
|
|
|
, breezy
|
|
|
|
, build
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, git
|
|
|
|
, mock
|
|
|
|
, pep517
|
|
|
|
, pytestCheckHook
|
|
|
|
, toml
|
|
|
|
}:
|
2018-03-31 16:32:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "check-manifest";
|
2021-09-22 20:06:14 +01:00
|
|
|
version = "0.47";
|
2018-03-31 16:32:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-09-22 20:06:14 +01:00
|
|
|
sha256 = "56dadd260a9c7d550b159796d2894b6d0bcc176a94cbc426d9bb93e5e48d12ce";
|
2018-03-31 16:32:41 +01:00
|
|
|
};
|
|
|
|
|
2020-07-07 15:05:20 +01:00
|
|
|
# Test requires filesystem access
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace tests.py --replace "test_build_sdist" "no_test_build_sdist"
|
|
|
|
'';
|
2019-11-02 18:15:49 +00:00
|
|
|
|
2021-03-03 10:01:42 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
build
|
|
|
|
pep517
|
|
|
|
toml
|
|
|
|
];
|
2020-07-07 15:05:20 +01:00
|
|
|
|
2021-03-03 10:01:42 +00:00
|
|
|
checkInputs = [
|
|
|
|
breezy
|
|
|
|
git
|
|
|
|
mock
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
2021-03-03 07:08:23 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [ "check_manifest" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/mgedmin/check-manifest";
|
2018-03-31 16:32:41 +01:00
|
|
|
description = "Check MANIFEST.in in a Python source package for completeness";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ lewo ];
|
|
|
|
};
|
|
|
|
}
|