mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
0215034f25
when they already rely on SRI hashes.
21 lines
485 B
Nix
21 lines
485 B
Nix
{ lib, buildPythonPackage, fetchPypi, click }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "click-log";
|
|
version = "0.4.0";
|
|
|
|
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 = with maintainers; [ ];
|
|
};
|
|
}
|