mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
python3Packages.exceptiongroup: init at 1.0.0rc2
This commit is contained in:
parent
22be75cbbe
commit
abe24e99b5
2 changed files with 41 additions and 0 deletions
39
pkgs/development/python-modules/exceptiongroup/default.nix
Normal file
39
pkgs/development/python-modules/exceptiongroup/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, flit-core
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "exceptiongroup";
|
||||
version = "1.0.0rc2";
|
||||
format = "flit";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-TSVLBSMb7R1DB5vc/g8dZsCrR4Pmd3oyk1X5t43jrYM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
flit-core
|
||||
];
|
||||
|
||||
# Tests are only in the source available but tagged releases
|
||||
# are incomplete as files are generated during the release process
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"exceptiongroup"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Backport of PEP 654 (exception groups)";
|
||||
homepage = "https://github.com/agronholm/exceptiongroup";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -2751,6 +2751,8 @@ in {
|
|||
|
||||
exdown = callPackage ../development/python-modules/exdown { };
|
||||
|
||||
exceptiongroup = callPackage ../development/python-modules/exceptiongroup { };
|
||||
|
||||
exchangelib = callPackage ../development/python-modules/exchangelib { };
|
||||
|
||||
execnet = callPackage ../development/python-modules/execnet { };
|
||||
|
|
Loading…
Reference in a new issue