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

Commits on Apr 25, 2020

  1. pythonPackages.pymavlink: 2.4.6 -> 2.4.8

    lopsided98 authored and Jon committed Apr 25, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    746ee6f View commit details
  2. mavproxy: 1.8.18 -> 1.8.19

    lopsided98 authored and Jon committed Apr 25, 2020
    Copy the full SHA
    bc93f12 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/applications/science/robotics/mavproxy/default.nix
  2. +2 −2 pkgs/development/python-modules/pymavlink/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/science/robotics/mavproxy/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@

buildPythonApplication rec {
pname = "MAVProxy";
version = "1.8.18";
version = "1.8.19";

src = fetchPypi {
inherit pname version;
sha256 = "1fi4m3591wws5cq43q8aljf91mzs6i9yhn9rimhpfrskbyf9knvm";
sha256 = "1rbq2nm01212rp5xbl8p8kjl2mpgfppkwjsq3lnfw1v6g0m4359h";
};

propagatedBuildInputs = [
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pymavlink/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

buildPythonPackage rec {
pname = "pymavlink";
version = "2.4.6";
version = "2.4.8";

src = fetchPypi {
inherit pname version;
sha256 = "1c8bxbm18h4idfdxqgklcz4n5bgsyl9y14gl9314fpflwa2c7ds8";
sha256 = "1djzr6cg3l19icwplmpii7zzr8gms9qcc2lfr8yc05siqzclk5xk";
};

propagatedBuildInputs = [ future lxml ];