mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
32 lines
659 B
Nix
32 lines
659 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonAtLeast,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "crashtest";
|
|
version = "0.4.1";
|
|
format = "setuptools";
|
|
disabled = !(pythonAtLeast "3.6");
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-gNex8xbr+9Qp9kgHbWJ1yHe6MLpIl53kGRcUp1Jm8M4=";
|
|
};
|
|
|
|
# has tests, but only on GitHub, however the pyproject build fails for me
|
|
pythonImportsCheck = [
|
|
"crashtest.frame"
|
|
"crashtest.inspector"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/sdispater/crashtest";
|
|
description = "Manage Python errors with ease";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|