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

Commits on May 17, 2018

  1. python36Packages.uranium: 3.2.1 -> 3.3.0

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/uranium/versions.
    
    These checks were done:
    
    - built on NixOS
    
    - 0 of 0 passed binary check by having a zero exit code.
    - 0 of 0 passed binary check by having the new version present in output.
    - found 3.3.0 with grep in /nix/store/s5bmfykrkc953i0qhfkmwj6fj1yv3i56-uranium-3.3.0
    - directory tree listing: https://gist.github.com/0c76704986608d25a9223af819e0a259
    - du listing: https://gist.github.com/242655ce87890bfe9b511e44306303de
    R. RyanTM committed May 17, 2018

    Unverified

    The committer email address is not verified.
    Copy the full SHA
    1ec3c94 View commit details
  2. Merge pull request #40633 from r-ryantm/auto-update/uranium

    python36Packages.uranium: 3.2.1 -> 3.3.0
    dotlambda authored May 17, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d20354c View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/uranium/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/uranium/default.nix
Original file line number Diff line number Diff line change
@@ -5,15 +5,15 @@ then throw "Uranium not supported for interpreter ${python.executable}"
else

stdenv.mkDerivation rec {
version = "3.2.1";
version = "3.3.0";
pname = "uranium";
name = "${pname}-${version}";

src = fetchFromGitHub {
owner = "Ultimaker";
repo = "Uranium";
rev = version;
sha256 = "1p05iw1x3rvb51p6hj57yq6nsjawjba3pyyr4jx924iq96vcc3fz";
sha256 = "1rg0l2blndnbdfcgkjc2r29cnjdm009rz8lnc225ilh9d7w1srbb";
};

buildInputs = [ python gettext ];