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

Commits on Nov 26, 2020

  1. symengine: 0.5.0 -> 0.6.0

    r-ryantm committed Nov 26, 2020
    Copy the full SHA
    07dfadc View commit details
  2. Copy the full SHA
    34730e0 View commit details

Commits on Nov 27, 2020

  1. Merge pull request #105083 from r-ryantm/auto-update/symengine

    symengine: 0.5.0 -> 0.6.0, pythonPackages.symengine: 0.4.0 -> 0.6.1
    SuperSandro2000 authored Nov 27, 2020
    Copy the full SHA
    dccb1b1 View commit details
Showing with 7 additions and 6 deletions.
  1. +2 −2 pkgs/development/libraries/symengine/default.nix
  2. +5 −4 pkgs/development/python-modules/symengine/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/symengine/default.nix
Original file line number Diff line number Diff line change
@@ -9,13 +9,13 @@

stdenv.mkDerivation rec {
pname = "symengine";
version = "0.5.0";
version = "0.6.0";

src = fetchFromGitHub {
owner = "symengine";
repo = "symengine";
rev = "v${version}";
sha256 = "1zgfhqv43qcfkfdyf1p82bcfv05n6iix6yw6qx1y5bnb7dv74irw";
sha256 = "129iv9maabmb42ylfdv0l0g94mcbf3y4q3np175008rcqdr8z6h1";
};

nativeBuildInputs = [ cmake ];
9 changes: 5 additions & 4 deletions pkgs/development/python-modules/symengine/default.nix
Original file line number Diff line number Diff line change
@@ -11,13 +11,13 @@

buildPythonPackage rec {
pname = "symengine";
version = "0.4.0";
version = "0.6.1";

src = fetchFromGitHub {
owner = "symengine";
repo = "symengine.py";
rev = "v${version}";
sha256 = "07i9rwxphi4zgwc7y6f6qvq73iym2cx4k1bpd7rmd3wkpgrrfxqx";
sha256 = "13fy25qxn4xwzlr2w35v6jhlpd70lv9r6srv4dizc4brj63hnw50";
};

postConfigure = ''
@@ -28,7 +28,9 @@ buildPythonPackage rec {
--replace "SET(CYTHON_BIN cython" "SET(CYTHON_BIN ${cython}/bin/cython"
'';

buildInputs = [ cython cmake ];
nativeBuildUnputs = [ cmake ];

buildInputs = [ cython ];

checkInputs = [ pytest sympy ];

@@ -48,6 +50,5 @@ buildPythonPackage rec {
homepage = "https://github.com/symengine/symengine.py";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
broken = true;
};
}