2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-18 10:04:08 +00:00

python3Packages.tidyexc: init at 0.10.0

This commit is contained in:
jacobi petrucciani 2022-12-23 11:46:32 -05:00
parent 250a51232c
commit b3c19ad3ce
2 changed files with 27 additions and 0 deletions
pkgs
development/python-modules/tidyexc
top-level

View File

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "tidyexc";
version = "0.10.0";
src = fetchPypi {
inherit pname version;
sha256 = "1gl1jmihafawg7hvnn4xb20vd2x5qpvca0m1wr2gk0m2jj42yiq6";
};
format = "flit";
pythonImportsCheck = [ "tidyexc" ];
meta = with lib; {
description = "Raise rich, helpful exceptions";
homepage = "https://github.com/kalekundert/tidyexc";
changelog = "https://github.com/kalekundert/tidyexc/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ jpetrucciani ];
};
}

View File

@ -11185,6 +11185,8 @@ self: super: with self; {
py = python.override { x11Support=true; };
};
tidyexc = callPackage ../development/python-modules/tidyexc { };
tidylib = callPackage ../development/python-modules/pytidylib { };
tifffile = callPackage ../development/python-modules/tifffile { };