mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
21 lines
510 B
Nix
21 lines
510 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, click }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "click-log";
|
|
version = "0.3.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "16fd1ca3fc6b16c98cea63acf1ab474ea8e676849dc669d86afafb0ed7003124";
|
|
};
|
|
|
|
propagatedBuildInputs = [ click ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/click-contrib/click-log/";
|
|
description = "Logging integration for Click";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|