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: 10bccd2952b8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e5236a136dbf
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Oct 31, 2019

  1. maintainers: add rakesh4g

    Rakesh4G authored and Jon committed Oct 31, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b5401f0 View commit details
  2. pythonPackages.opentracing: init at 2.2.0

    Rakesh4G authored and Jon committed Oct 31, 2019
    Copy the full SHA
    e5236a1 View commit details
Showing with 42 additions and 0 deletions.
  1. +6 −0 maintainers/maintainer-list.nix
  2. +34 −0 pkgs/development/python-modules/opentracing/default.nix
  3. +2 −0 pkgs/top-level/python-packages.nix
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -7403,4 +7403,10 @@
githubId = 51886259;
name = "Zokre Zyl";
};
rakesh4g = {
email = "rakeshgupta4u@gmail.com";
github = "rakesh4g";
githubId = 50867187;
name = "Rakesh Gupta";
};
}
34 changes: 34 additions & 0 deletions pkgs/development/python-modules/opentracing/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, futures
, gevent
, mock
, pytest
, tornado }:

buildPythonPackage rec {
pname = "opentracing";
version = "2.2.0";

src = fetchPypi {
inherit pname version;
sha256 = "cfd231ba5c58f90bc277787e62861eb0c6e4af76e42957bec240bbdf71fb7e0e";
};

propagatedBuildInputs = lib.optional isPy27 futures;

checkInputs = [ gevent mock pytest tornado ];

checkPhase = ''
pytest
'';

meta = with lib; {
homepage = https://github.com/opentracing/opentracing-python;
description = "Platform API for OpenTracing";
license = licenses.asl20;
maintainers = with maintainers; [ rakesh4g ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -1982,6 +1982,8 @@ in {
pythonPackages = self;
});

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

openidc-client = callPackage ../development/python-modules/openidc-client {};

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