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: def9d0980684
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6b4633884789
Choose a head ref
  • 14 commits
  • 14 files changed
  • 8 contributors

Commits on Oct 31, 2019

  1. Copy the full SHA
    e64f741 View commit details
  2. maestral: 0.4.0 -> 0.4.2

    peterhoeg authored and Jon committed Oct 31, 2019
    Copy the full SHA
    b085792 View commit details
  3. Copy the full SHA
    e888c42 View commit details
  4. procs: 0.8.11 -> 0.8.13

    marsam authored and Jon committed Oct 31, 2019
    Copy the full SHA
    b861611 View commit details
  5. cawbird: 1.0.2 -> 1.0.3.1

    schmittlauch authored and Jon committed Oct 31, 2019
    Copy the full SHA
    01c7499 View commit details
  6. vimPlugins: Update

    justinlovinger authored and Jon committed Oct 31, 2019
    Copy the full SHA
    565cca3 View commit details
  7. Copy the full SHA
    274bf0a View commit details
  8. Merge pull request #72350 from peterhoeg/f/checks

    check-nwc-health: fix source URL
    peterhoeg authored Oct 31, 2019
    Copy the full SHA
    015d320 View commit details
  9. python3.pkgs.cherrypy: 18.1.2 -> 18.3.0 and fix tests

    ajs124 authored and Jon committed Oct 31, 2019
    Copy the full SHA
    03ec5e7 View commit details
  10. Copy the full SHA
    10bccd2 View commit details
  11. maintainers: add rakesh4g

    Rakesh4G authored and Jon committed Oct 31, 2019
    Copy the full SHA
    b5401f0 View commit details
  12. pythonPackages.opentracing: init at 2.2.0

    Rakesh4G authored and Jon committed Oct 31, 2019
    Copy the full SHA
    e5236a1 View commit details
  13. Copy the full SHA
    a17f727 View commit details
  14. pythonPackages.labelbox: init at 2.1

    Rakesh4G authored and Jon committed Oct 31, 2019
    Copy the full SHA
    6b46338 View commit details
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";
};
}
6 changes: 3 additions & 3 deletions pkgs/applications/networking/cawbird/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ stdenv, fetchFromGitHub, glib, gtk3, json-glib, sqlite, libsoup, gettext, vala
, meson, ninja, pkgconfig, gnome3, gst_all_1, wrapGAppsHook, gobject-introspection
, glib-networking, python3, fetchpatch }:
, glib-networking, python3 }:

stdenv.mkDerivation rec {
version = "1.0.2";
version = "1.0.3.1";
pname = "cawbird";

src = fetchFromGitHub {
owner = "IBBoard";
repo = "cawbird";
rev = "v${version}";
sha256 = "sha256:0b79ngwilicqkgacva93cir4rmk15yzgsih56yb3a4n6bqjispay";
sha256 = "sha256:1v1y4bx0mm518b9vlpsry12fw1qz2j28jfhjqq73blvzd89lgb0y";
};

nativeBuildInputs = [
4 changes: 2 additions & 2 deletions pkgs/applications/networking/maestral/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

python3Packages.buildPythonApplication rec {
pname = "maestral${lib.optionalString withGui "-gui"}";
version = "0.4.0";
version = "0.4.2";

src = fetchFromGitHub {
owner = "SamSchott";
repo = "maestral-dropbox";
rev = "v${version}";
sha256 = "1jjn9cz43850xvs52gvx16qc5z4l91y4kpn6fpl05iwgaisbi1ws";
sha256 = "0xis0cqfp3wgajwk44dmi2gbfirmz0a0zi25qxdzpdn0z19hp88m";
};

disabled = python3Packages.pythonOlder "3.6";
9 changes: 7 additions & 2 deletions pkgs/applications/radio/uhd/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig
, python, pythonPackages, orc, libusb1, boost }:
, python, orc, libusb1, boost }:

# You need these udev rules to not have to run as root (copied from
# ${uhd}/share/uhd/utils/uhd-usrp.rules):
@@ -40,7 +40,12 @@ in stdenv.mkDerivation {
[ (stdenv.lib.optionalString stdenv.isAarch32 "-DCMAKE_CXX_FLAGS=-Wno-psabi") ];

nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ python pythonPackages.pyramid_mako orc libusb1 boost ];
buildInputs = [
(python.withPackages (ps: with ps; [ Mako six requests ]))
orc
libusb1
boost
];

# Build only the host software
preConfigure = "cd host";
10 changes: 5 additions & 5 deletions pkgs/development/ocaml-modules/sawja/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{stdenv, fetchurl, which, perl, ocaml, findlib, javalib, camlp4 }:
{stdenv, fetchurl, which, perl, ocaml, findlib, javalib }:

assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.12";

let
pname = "sawja";
version = "1.5.6";
version = "1.5.7";
webpage = "http://sawja.inria.fr/";
in
stdenv.mkDerivation {

name = "ocaml${ocaml.version}-${pname}-${version}";

src = fetchurl {
url = https://gforge.inria.fr/frs/download.php/file/37819/sawja-1.5.6.tar.bz2;
sha256 = "0dkfdc8h94r7kj4p8q57fz7fssypgmjrix8xff0va7x1nya5sdp3";
url = https://gforge.inria.fr/frs/download.php/file/38117/sawja-1.5.7.tar.bz2;
sha256 = "08xv1bq4pragc1g93w4dnbn0mighcjwfp3ixj9jzmhka2vzqm4cc";
};

buildInputs = [ which perl ocaml findlib camlp4 ];
buildInputs = [ which perl ocaml findlib ];

patches = [ ./configure.sh.patch ./Makefile.config.example.patch ];

19 changes: 7 additions & 12 deletions pkgs/development/python-modules/cherrypy/default.nix
Original file line number Diff line number Diff line change
@@ -7,29 +7,24 @@

buildPythonPackage rec {
pname = "cherrypy";
version = "18.1.2";
version = "18.3.0";

disabled = !isPy3k;

src = fetchPypi {
pname = "CherryPy";
inherit version;
sha256 = "1w3hpsg7q8shdmscmbqk00w90lcw3brary7wl1a56k5h7nx33pj8";
sha256 = "0q6cs4vrv0rwim4byxfizrlp4h6hmwg3n4baz0ga66vvgiz6hgk8";
};

# Remove patches once 96b34df and 14c12d2
# Remove patches once 88d2163 and 713f672
# become part of a release - they're currently only present in master.
# ref: https://github.com/cherrypy/cherrypy/pull/1791
# ref: https://github.com/cherrypy/cherrypy/pull/1820
patches = [
(fetchpatch {
name = "pytest5-1.patch";
url = "https://github.com/cherrypy/cherrypy/commit/96b34dfea7853b0189bc0a3878b6ddff0d4e505c.patch";
sha256 = "0zy53mahffgkpd844118b42lsk5lkjmig70d60x1i46w6gnr61mi";
})
(fetchpatch {
name = "pytest5-2.patch";
url = "https://github.com/cherrypy/cherrypy/commit/14c12d2420a4b3765bb241250bd186e93b2f25eb.patch";
sha256 = "0ihcz7b5myn923rq5665b98pz52hnf6fcys2y2inf23r3i07scyz";
name = "test_HTTP11_Timeout.patch";
url = "https://github.com/cherrypy/cherrypy/commit/88d21630f68090c56d07000cabb6df4f1b612a71.patch";
sha256 = "1i6a3qs3ijyd9rgsxb8axigkzdlmr5sl3ljif9rvn0d90211bzwh";
})
];

31 changes: 31 additions & 0 deletions pkgs/development/python-modules/labelbox/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
, jinja2
, pillow
, rasterio
, shapely
}:

buildPythonPackage rec {
pname = "labelbox";
version = "2.1";

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

propagatedBuildInputs = [ jinja2 requests pillow rasterio shapely ];

# Test cases are not running on pypi or GitHub
doCheck = false;

meta = with lib; {
homepage = https://github.com/Labelbox/Labelbox;
description = "Platform API for LabelBox";
license = licenses.asl20;
maintainers = with maintainers; [ rakesh4g ];
};
}
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 ];
};
}
8 changes: 5 additions & 3 deletions pkgs/development/tools/misc/terracognita/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,18 @@

buildGoModule rec {
pname = "terracognita";
version = "0.1.6";
version = "0.2.0";

src = fetchFromGitHub {
owner = "cycloidio";
repo = pname;
rev = "v${version}";
sha256 = "0ljh9dyn919k5f0yaca5an2vczj8cd5cb6qb4i5bdgmlh3wijiag";
sha256 = "06qw3mycgqkj2f5n6lm9xb2c21xjim2qlwizxsdc5hjrwbasl2q0";
};

modSha256 = "1ssz6rhdqma79x75qsxpa9is5zw1nlc0rv1h23dfsk8vla3p84ml";
modSha256 = "0sjs1dd8z8brxj5wwfrwimnlscy7i6flc4kq4576zwrcjg6pjvkr";

buildFlagsArray = [ "-ldflags=-s -w -X github.com/cycloidio/terracognita/cmd.Version=${version}" ];

meta = with lib; {
description = "Reads from existing Cloud Providers (reverse Terraform) and generates your infrastructure as code on Terraform configuration";
29 changes: 20 additions & 9 deletions pkgs/misc/vim-plugins/generated.nix
Original file line number Diff line number Diff line change
@@ -92,6 +92,17 @@ let
};
};

antonys-macro-repeater = buildVimPluginFrom2Nix {
pname = "antonys-macro-repeater";
version = "2017-09-10";
src = fetchFromGitHub {
owner = "ckarnell";
repo = "antonys-macro-repeater";
rev = "61784d86b2654f3e261b9cc33360c5197704e266";
sha256 = "1cq5r091qbxjs9s12f7bb2fdm43gxwpnnh2l8nhj0n69jfk7gblw";
};
};

argtextobj-vim = buildVimPluginFrom2Nix {
pname = "argtextobj-vim";
version = "2010-10-18";
@@ -314,12 +325,12 @@ let

coc-git = buildVimPluginFrom2Nix {
pname = "coc-git";
version = "2019-10-29";
version = "2019-10-30";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-git";
rev = "0201d54ce81d31922553bfc289a77579648bb82c";
sha256 = "0in3k9dhf5sy9d2qawy31k91gljs2nd0gi2qzi1dh67acfbx3czx";
rev = "56d45aaef20356e750530f9f80c99cd2f9184ac1";
sha256 = "17rbrjp35jd6rw66js88qaki2hk0cm1bvylfzjngdbzbgjc1qz1h";
};
};

@@ -369,12 +380,12 @@ let

coc-java = buildVimPluginFrom2Nix {
pname = "coc-java";
version = "2019-09-17";
version = "2019-10-30";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-java";
rev = "7e3bdee15b28f5d7f3b1654429c89cb0d93436e5";
sha256 = "0r17w00mbs1gshshm8c56cqi37z5i5vdk2sifs2clazlyn9rl6zm";
rev = "3195dd594389247e4bdb19d129e48846d9215f54";
sha256 = "1k354jh521fjm2xz05x1653g31bgmx3s0bpsraj516172k605qfr";
};
};

@@ -4097,12 +4108,12 @@ let

vim-ledger = buildVimPluginFrom2Nix {
pname = "vim-ledger";
version = "2019-10-26";
version = "2019-10-30";
src = fetchFromGitHub {
owner = "ledger";
repo = "vim-ledger";
rev = "e113a30ccca416fb8ae3f307e5f0d43a55e03597";
sha256 = "1sqgna0qnrqkll33x1waaaazqn2rwklccksm91zsd9k6p3q2hcgv";
rev = "66718caab97f13d25813f91b8352c9ac75b3771e";
sha256 = "0ia9r212019d8jqrbs3nrn36mpc09gc81gf4dnv3hksn6knpdr8b";
};
};

1 change: 1 addition & 0 deletions pkgs/misc/vim-plugins/vim-plugin-names
Original file line number Diff line number Diff line change
@@ -45,6 +45,7 @@ chrisgeo/sparkup
chriskempson/base16-vim
christoomey/vim-sort-motion
christoomey/vim-tmux-navigator
ckarnell/antonys-macro-repeater
cloudhead/neovim-fuzzy
CoatiSoftware/vim-sourcetrail
cocopon/iceberg.vim
2 changes: 1 addition & 1 deletion pkgs/servers/monitoring/plugins/labs_consol_de.nix
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ let
inherit pname version;

src = fetchurl {
url = "https://labs.consol.de/assets/downloads/nagios/${pname}-${version}.tar.bz";
url = "https://labs.consol.de/assets/downloads/nagios/${pname}-${version}.tar.gz";
inherit sha256;
};

6 changes: 3 additions & 3 deletions pkgs/tools/admin/procs/default.nix
Original file line number Diff line number Diff line change
@@ -4,16 +4,16 @@

rustPlatform.buildRustPackage rec {
pname = "procs";
version = "0.8.11";
version = "0.8.13";

src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
sha256 = "1bds84r5qw1chqd92rlijn4arqaywc5x4yjss3523ka55w3mphmf";
sha256 = "0yy41v2crds9500fa4r0kqiddciqkilr2h13nrjqy44ckvw2mi5y";
};

cargoSha256 = "11djms4rj3a1fs6f091gli32w6kww77n0072p0hwvqmc9yy1x57w";
cargoSha256 = "1gnl97h0l9k8xnrwl6807qlbx13vd45kmla02mk9p1h52sr0din5";

buildInputs = stdenv.lib.optional stdenv.isDarwin Security;

4 changes: 4 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -715,6 +715,8 @@ in {
jwcrypto = callPackage ../development/python-modules/jwcrypto { };

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

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

lammps-cython = callPackage ../development/python-modules/lammps-cython {
mpi = pkgs.openmpi;
@@ -1982,6 +1984,8 @@ in {
pythonPackages = self;
});

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

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

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