mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 18:44:07 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{ lib
|
|
, attrs
|
|
, buildPythonPackage
|
|
, entry-points-txt
|
|
, fetchFromGitHub
|
|
, headerparser
|
|
, jsonschema
|
|
, packaging
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, readme_renderer
|
|
, wheel-filename
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wheel-inspect";
|
|
version = "1.7.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jwodder";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-pB9Rh+A7GlxnYuka2mTSBoxpoyYCzoaMPVgsHDlpos0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
attrs
|
|
entry-points-txt
|
|
headerparser
|
|
packaging
|
|
readme_renderer
|
|
wheel-filename
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
jsonschema
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace tox.ini \
|
|
--replace " --cov=wheel_inspect --no-cov-on-fail" ""
|
|
substituteInPlace setup.cfg \
|
|
--replace "entry-points-txt ~= 0.1.0" "entry-points-txt >= 0.1.0"
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"wheel_inspect"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"-W"
|
|
"ignore::DeprecationWarning"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Extract information from wheels";
|
|
homepage = "https://github.com/jwodder/wheel-inspect";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ ayazhafiz ];
|
|
};
|
|
}
|