python310Packages.hatch-fancy-pypi-readme: init at 22.3.0
This is depended upon by the newest python310Packages.jsonschema.
This commit is contained in:
parent
c172beec3b
commit
b0beaa821e
2 changed files with 54 additions and 0 deletions
|
@ -0,0 +1,52 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, build
|
||||||
|
, hatchling
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "hatch-fancy-pypi-readme";
|
||||||
|
version = "22.3.0";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
pname = "hatch_fancy_pypi_readme";
|
||||||
|
inherit version;
|
||||||
|
hash = "sha256-fUZR+PB4JZMckoc8tRE3IUqTi623p1m4XB2Vv3T4bvo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
hatchling
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hatchling
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4100,6 +4100,8 @@ in {
|
||||||
|
|
||||||
hatchling = callPackage ../development/python-modules/hatchling { };
|
hatchling = callPackage ../development/python-modules/hatchling { };
|
||||||
|
|
||||||
|
hatch-fancy-pypi-readme = callPackage ../development/python-modules/hatch-fancy-pypi-readme { };
|
||||||
|
|
||||||
hatch-vcs = callPackage ../development/python-modules/hatch-vcs { };
|
hatch-vcs = callPackage ../development/python-modules/hatch-vcs { };
|
||||||
|
|
||||||
haversine = callPackage ../development/python-modules/haversine { };
|
haversine = callPackage ../development/python-modules/haversine { };
|
||||||
|
|
Loading…
Reference in a new issue