python3Packages.etils: init at 0.6.0

This commit is contained in:
Martin Weinelt 2022-07-21 19:41:54 +02:00 committed by Matt Wittmann
parent 9e8c847e9d
commit 07ed3ff369
No known key found for this signature in database
GPG key ID: AEAD22D9F95347ED
2 changed files with 91 additions and 0 deletions

View file

@ -0,0 +1,89 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, flit-core
# tests
, chex
, jaxlib
, pytest-subtests
, pytest-xdist
, pytestCheckHook
, yapf
# optional
, jupyter
, mediapy
, numpy
, importlib-resources
, typing-extensions
, zipp
, absl-py
, tqdm
, dm-tree
, jax
, tensorflow
}:
buildPythonPackage rec {
pname = "etils";
version = "0.6.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ZnckEFGDXQ2xHElHvK2Tj1e1HqECKQYk+JLx5OUbcOU=";
};
nativeBuildInputs = [
flit-core
];
passthru.optional-dependencies = rec {
array-types = enp;
ecolab = [ jupyter numpy mediapy ] ++ enp ++ epy;
edc = epy;
enp = [ numpy ] ++ epy;
epath = [ importlib-resources typing-extensions zipp ] ++ epy;
epy = [ typing-extensions ];
etqdm = [ absl-py tqdm ] ++ epy;
etree = array-types ++ epy ++ enp ++ etqdm;
etree-dm = [ dm-tree ] ++ etree;
etree-jax = [ jax ] ++ etree;
etree-tf = [ tensorflow etree ] ++ etree;
all = array-types ++ ecolab ++ edc ++ enp ++ epath ++ epy ++ etqdm
++ etree ++ etree-dm ++ etree-jax ++ etree-tf;
};
doCheck = false; # disable tests until https://github.com/NixOS/nixpkgs/issues/185273 is resolved
pythonImportsCheck = [
"etils"
];
checkInputs = [
chex
jaxlib
pytest-subtests
pytest-xdist
pytestCheckHook
yapf
]
++ passthru.optional-dependencies.all;
disabledTests = [
"test_repr" # known to fail on Python 3.10, see https://github.com/google/etils/issues/143
"test_public_access" # requires network access
"test_resource_path" # known to fail on Python 3.10, see https://github.com/google/etils/issues/143
];
meta = with lib; {
description = "Collection of eclectic utils for python";
homepage = "https://github.com/google/etils";
license = licenses.asl20;
maintainers = with maintainers; [ mcwitt ];
};
}

View file

@ -2900,6 +2900,8 @@ in {
eth-utils = callPackage ../development/python-modules/eth-utils { };
etils = callPackage ../development/python-modules/etils { };
etuples = callPackage ../development/python-modules/etuples { };
et_xmlfile = callPackage ../development/python-modules/et_xmlfile { };