mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
27 lines
501 B
Nix
27 lines
501 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
click,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "click-log";
|
|
version = "0.4.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-OXD4VwrFRJEje82z2KtePu9sBX3yn4w9EVGlGpwjuXU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ click ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/click-contrib/click-log/";
|
|
description = "Logging integration for Click";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|