mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, build
|
|
, hatchling
|
|
, tomli
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hatch-fancy-pypi-readme";
|
|
version = "23.1.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "hatch_fancy_pypi_readme";
|
|
inherit version;
|
|
hash = "sha256-sd9EBjCUrx6CSM6s1HqSyc8xPWuYI79mr4qSfDlgKH0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
hatchling
|
|
] ++ lib.optionals (pythonOlder "3.11") [
|
|
tomli
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
build
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Requires network connection
|
|
disabledTests = [
|
|
"test_build" # Requires internet
|
|
"test_invalid_config"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"hatch_fancy_pypi_readme"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Fancy PyPI READMEs with Hatch";
|
|
homepage = "https://github.com/hynek/hatch-fancy-pypi-readme";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ tjni ];
|
|
};
|
|
}
|