mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
71 lines
1.3 KiB
Nix
71 lines
1.3 KiB
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|