nixpkgs/pkgs/development/python-modules/ubelt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.3 KiB
Nix
Raw Normal View History

2023-11-03 18:53:34 +03:00
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, wheel
, numpy
, python-dateutil
, xxhash
, pytestCheckHook
, requests
, xdoctest
}:
buildPythonPackage rec {
pname = "ubelt";
version = "1.3.4";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Erotemic";
repo = "ubelt";
rev = "refs/tags/v${version}";
hash = "sha256-pvCmmdPRLupMUCiOvfa+JTX8NPFZ/UcXSPEaaDG3eTk=";
};
nativeBuildInputs = [
setuptools
wheel
];
passthru.optional-dependencies = {
optional = [
numpy
python-dateutil
xxhash
];
};
nativeCheckInputs = [
pytestCheckHook
requests
xdoctest
];
preCheck = ''
export HOME=$TMPDIR
'';
disabledTests = lib.optionals stdenv.isDarwin [
# fail due to sandbox environment
"CacheStamp.expired"
"userhome"
];
pythonImportsCheck = [ "ubelt" ];
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "A Python utility library with a stdlib like feel and extra batteries. Paths, Progress, Dicts, Downloads, Caching, Hashing: ubelt makes it easy";
homepage = "https://github.com/Erotemic/ubelt";
changelog = "https://github.com/Erotemic/ubelt/blob/${src.rev}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ natsukium ];
};
}