159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
pdm-backend,
|
|
tomli,
|
|
build,
|
|
hatchling,
|
|
pkginfo,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pdm-build-locked";
|
|
version = "0.3.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pdm-project";
|
|
repo = "pdm-build-locked";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-tgLC1tUgmyX7QvlLpNb/SMQRTDZ+DNFV3o0JELAZEeo=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace tests/conftest.py \
|
|
--replace-fail '"pdm.pytest"' ""
|
|
sed -i "/addopts/d" pyproject.toml
|
|
'';
|
|
|
|
build-system = [ pdm-backend ];
|
|
|
|
dependencies = lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
pythonImportsCheck = [ "pdm_build_locked" ];
|
|
|
|
nativeCheckInputs = [
|
|
build
|
|
hatchling
|
|
pkginfo
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# circular import of pdm
|
|
"tests/unit/test_build_command.py"
|
|
];
|
|
|
|
meta = {
|
|
description = "Pdm-build-locked is a pdm plugin to publish locked dependencies as optional-dependencies";
|
|
homepage = "https://github.com/pdm-project/pdm-build-locked";
|
|
changelog = "https://github.com/pdm-project/pdm-build-locked/releases/tag/${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ natsukium ];
|
|
};
|
|
}
|