nixpkgs/pkgs/development/python-modules/click-log/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

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; [ ];
};
}