mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
e97e82f831
Packages that consume pdm-backend often use it, quite similary to setuptools-scm-version, for dynamic versioning. That works fine when pulling releases from PyPi, but needs special handling, when releases are pulled from Git. The pdm-backend package will now always export `PDM_BUILD_SCM_VERSION=` to propagate the derivation version to pdm-backend. This behaviour can be disabled by setting ``` dontSetPdmBackendVersion = true; ```
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{ lib
|
|
, aiofiles
|
|
, buildPythonPackage
|
|
, cached-property
|
|
, colorama
|
|
, fetchFromGitHub
|
|
, git
|
|
, jsonschema
|
|
, pdm-backend
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "griffe";
|
|
version = "0.29.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mkdocstrings";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-WZJogwxhSScJpTFVJaMn6LyIyZtOAxTnY3232NW0bds=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'license = "ISC"' 'license = {file = "LICENSE"}' \
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pdm-backend
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
colorama
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
cached-property
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
jsonschema
|
|
pytestCheckHook
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
async = [
|
|
aiofiles
|
|
];
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"griffe"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Signatures for entire Python programs";
|
|
homepage = "https://github.com/mkdocstrings/griffe";
|
|
changelog = "https://github.com/mkdocstrings/griffe/blob/${version}/CHANGELOG.md";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|