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:
parent
250a51232c
commit
b3c19ad3ce
pkgs
25
pkgs/development/python-modules/tidyexc/default.nix
Normal file
25
pkgs/development/python-modules/tidyexc/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user