nixpkgs/pkgs/development/python-modules/unearth/default.nix
2023-09-25 05:47:07 +00:00

61 lines
1.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.11.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ryBymzmNLzuDklHXReT0DyPLCb1reX4Kb/bu1GynBCI=";
};
nativeBuildInputs = [
pdm-backend
];
propagatedBuildInputs = [
packaging
requests
] ++ lib.optionals (pythonOlder "3.8") [
cached-property
];
__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 ];
};
}