python310Packages.etils: 0.7.1 -> 0.8.0
This commit is contained in:
parent
ad0d2e3453
commit
8efed0770f
1 changed files with 4 additions and 4 deletions
|
@ -28,14 +28,14 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "etils";
|
pname = "etils";
|
||||||
version = "0.7.1";
|
version = "0.8.0";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-IHwJfdQYDV5asce37ni3v5Rx4SU03qziOx05LevSkvM=";
|
hash = "sha256-0dWve9nHhKJzxOHsz6qP6speBIGghxe1MT+iMdoiqQM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -58,8 +58,6 @@ buildPythonPackage rec {
|
||||||
++ etree ++ etree-dm ++ etree-jax ++ etree-tf;
|
++ etree ++ etree-dm ++ etree-jax ++ etree-tf;
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = false; # disable tests until https://github.com/NixOS/nixpkgs/issues/185273 is resolved
|
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
"etils"
|
"etils"
|
||||||
];
|
];
|
||||||
|
@ -80,6 +78,8 @@ buildPythonPackage rec {
|
||||||
"test_resource_path" # known to fail on Python 3.10, see https://github.com/google/etils/issues/143
|
"test_resource_path" # known to fail on Python 3.10, see https://github.com/google/etils/issues/143
|
||||||
];
|
];
|
||||||
|
|
||||||
|
doCheck = false; # error: infinite recursion encountered
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Collection of eclectic utils for python";
|
description = "Collection of eclectic utils for python";
|
||||||
homepage = "https://github.com/google/etils";
|
homepage = "https://github.com/google/etils";
|
||||||
|
|
Loading…
Reference in a new issue