Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 846da8ba7d01
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 94a08f2f8e97
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 8, 2019

  1. Copy the full SHA
    fedc7d0 View commit details

Commits on Oct 28, 2019

  1. Merge pull request #54975 from ghost/python-logstash

    pythonPackages.python-logstash: init at 0.4.6
    marsam authored Oct 28, 2019
    Copy the full SHA
    94a08f2 View commit details
Showing with 23 additions and 0 deletions.
  1. +21 −0 pkgs/development/python-modules/python-logstash/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
21 changes: 21 additions & 0 deletions pkgs/development/python-modules/python-logstash/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
pname = "python-logstash";
version = "0.4.6";

src = fetchPypi {
inherit pname version;
sha256 = "13763yx0k655y0c8gxv7jj6cqp45zypx2fmnc56jnn9zz1fkx50h";
};

# no tests
doCheck = false;

meta = with lib; {
description = "Python logging handler for Logstash";
homepage = https://github.com/vklochan/python-logstash;
maintainers = with maintainers; [ peterromfeldhk ];
license = licenses.mit;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -5619,6 +5619,8 @@ in {

python-libarchive = callPackage ../development/python-modules/python-libarchive { };

python-logstash = callPackage ../development/python-modules/python-logstash { };

libarchive-c = callPackage ../development/python-modules/libarchive-c {
inherit (pkgs) libarchive;
};