depot/third_party/nixpkgs/pkgs/development/python-modules/unearth/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

58 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, cached-property
, packaging
, pdm-backend
, requests
, flask
, pytest-httpserver
, pytestCheckHook
, requests-wsgi-adapter
, trustme
}:
buildPythonPackage rec {
pname = "unearth";
version = "0.14.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-883fuUrA+GX7z5ZCMVVu9xgwEDecALASBVF6UMeKGG0=";
};
nativeBuildInputs = [
pdm-backend
];
propagatedBuildInputs = [
packaging
requests
];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [
flask
pytest-httpserver
pytestCheckHook
requests-wsgi-adapter
trustme
];
pythonImportsCheck = [
"unearth"
];
meta = with lib; {
description = "A utility to fetch and download Python packages";
homepage = "https://github.com/frostming/unearth";
changelog = "https://github.com/frostming/unearth/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ betaboon ];
};
}