mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
33 lines
698 B
Nix
33 lines
698 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
flit,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tidyexc";
|
|
version = "0.10.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1gl1jmihafawg7hvnn4xb20vd2x5qpvca0m1wr2gk0m2jj42yiq6";
|
|
};
|
|
|
|
nativeBuildInputs = [ 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 ];
|
|
};
|
|
}
|