159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
packaging,
|
|
pdm-backend,
|
|
httpx,
|
|
flask,
|
|
pytest-httpserver,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
requests-wsgi-adapter,
|
|
trustme,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "unearth";
|
|
version = "0.17.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-C4oq/TR28athVfxXlQGsR//+Q1R9iKcOWlt2p/5sqiw=";
|
|
};
|
|
|
|
build-system = [ pdm-backend ];
|
|
|
|
dependencies = [
|
|
packaging
|
|
httpx
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = [
|
|
flask
|
|
pytest-httpserver
|
|
pytest-mock
|
|
pytestCheckHook
|
|
requests-wsgi-adapter
|
|
trustme
|
|
];
|
|
|
|
pythonImportsCheck = [ "unearth" ];
|
|
|
|
meta = with lib; {
|
|
description = "Utility to fetch and download Python packages";
|
|
mainProgram = "unearth";
|
|
homepage = "https://github.com/frostming/unearth";
|
|
changelog = "https://github.com/frostming/unearth/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ betaboon ];
|
|
};
|
|
}
|