My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/check-manifest/default.nix

54 lines
903 B

{ lib
, breezy
, build
, buildPythonPackage
, fetchPypi
, git
, mock
, pep517
, pytestCheckHook
, toml
, pythonOlder
}:
buildPythonPackage rec {
pname = "check-manifest";
version = "0.48";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-O1dfHa3nvrMHjvS/M6lFGYNEV8coHbxyaxXFRmtVxlc=";
};
propagatedBuildInputs = [
build
pep517
toml
];
checkInputs = [
breezy
git
mock
pytestCheckHook
];
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";
homepage = "https://github.com/mgedmin/check-manifest";
license = licenses.mit;
maintainers = with maintainers; [ lewo ];
};
}