Merge pull request #171743 from SuperSandro2000/zipp

python310Packages.zipp: adopt, execute tests
main
Sandro 2 years ago committed by GitHub
commit 580a295e9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 29
      pkgs/development/python-modules/func-timeout/default.nix
  2. 22
      pkgs/development/python-modules/zipp/default.nix
  3. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "func-timeout";
version = "4.3.5";
src = fetchPypi {
pname = "func_timeout";
inherit version;
sha256 = "74cd3c428ec94f4edfba81f9b2f14904846d5ffccc27c92433b8b5939b5575dd";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "func_timeout" ];
meta = with lib; {
description = "Allows you to specify timeouts when calling any existing function. Also provides support for stoppable-threads";
homepage = "https://github.com/kata198/func_timeout";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, fetchPypi
, more-itertools
, func-timeout
, jaraco_itertools
, pythonOlder
, setuptools-scm
}:
buildPythonPackage rec {
let zipp = buildPythonPackage rec {
pname = "zipp";
version = "3.7.0";
format = "setuptools";
@ -22,21 +23,26 @@ buildPythonPackage rec {
setuptools-scm
];
propagatedBuildInputs = [
more-itertools
];
# Prevent infinite recursion with pytest
doCheck = false;
checkInputs = [
func-timeout
jaraco_itertools
];
pythonImportsCheck = [
"zipp"
];
passthru.tests = {
check = zipp.overridePythonAttrs (_: { doCheck = true; });
};
meta = with lib; {
description = "Pathlib-compatible object wrapper for zip files";
homepage = "https://github.com/jaraco/zipp";
license = licenses.mit;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ SuperSandro2000 ];
};
}
}; in zipp

@ -3218,6 +3218,8 @@ in {
ftputil = callPackage ../development/python-modules/ftputil { };
func-timeout = callPackage ../development/python-modules/func-timeout { };
funcparserlib = callPackage ../development/python-modules/funcparserlib { };
funcsigs = callPackage ../development/python-modules/funcsigs { };

Loading…
Cancel
Save