nixpkgs/pkgs/development/python-modules/pep517/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

60 lines
967 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, tomli
, pythonOlder
, importlib-metadata
, zipp
, pytestCheckHook
, setuptools
, testpath
, mock
, pip
}:
buildPythonPackage rec {
pname = "pep517";
version = "0.13.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-rmmSfFwXK+Gt2SA3JtS4TPPrrR7c1fcfzcdG5m6Cn1k=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
tomli
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata zipp
];
nativeCheckInputs = [
pytestCheckHook
setuptools
testpath
mock
pip
];
disabledTests = [
"test_setup_py"
"test_issue_104"
];
preCheck = ''
rm pytest.ini # wants flake8
rm tests/test_meta.py # wants to run pip
'';
meta = {
description = "Wrappers to build Python packages using PEP 517 hooks";
license = lib.licenses.mit;
homepage = "https://github.com/pypa/pep517";
};
}