python3Packages.pypi-simple: init at 1.8.0

This commit is contained in:
Ihar Hrachyshka
2026-07-24 22:46:03 -04:00
parent 05bb946302
commit ccd93dcec1
2 changed files with 56 additions and 0 deletions
@@ -0,0 +1,54 @@
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
beautifulsoup4,
mailbits,
packaging,
pydantic,
requests,
tqdm,
}:
buildPythonPackage (finalAttrs: {
pname = "pypi-simple";
version = "1.8.0";
pyproject = true;
src = fetchPypi {
pname = "pypi_simple";
inherit (finalAttrs) version;
hash = "sha256-Rm8vzQ1yOCKq46DM/aIuaP+M1/UKrmiRGUarHdHVh+E=";
};
build-system = [
hatchling
];
dependencies = [
beautifulsoup4
mailbits
packaging
pydantic
requests
];
optional-dependencies = {
tqdm = [
tqdm
];
};
pythonImportsCheck = [
"pypi_simple"
];
meta = {
description = "PyPI Simple Repository API client library";
homepage = "https://pypi.org/project/pypi-simple";
changelog = "https://github.com/jwodder/pypi-simple/blob/master/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ booxter ];
};
})
+2
View File
@@ -15403,6 +15403,8 @@ self: super: with self; {
pyphotonfile = callPackage ../development/python-modules/pyphotonfile { };
pypi-simple = callPackage ../development/python-modules/pypi-simple { };
pypika = callPackage ../development/python-modules/pypika { };
pypillowfight = callPackage ../development/python-modules/pypillowfight { };