Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4786f8e5b73f
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6c2e7b28e7c6
Choose a head ref
  • 3 commits
  • 1 file changed
  • 3 contributors

Commits on Apr 25, 2020

  1. pythonPackages.stem: 1.7.1 -> 1.8.0

    (cherry picked from commit f539a47)
    colemickens authored and ryneeverett committed Apr 25, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    7bb0ca2 View commit details
  2. pythonPackages.stem: remove marked as broken

    A third attempt after #85642 which I hadn't recognized as a backport
    of #81679.
    
    The bug is just with the test suite on python 3.8 which was fixed in 1.8.0.
    See bug report: https://trac.torproject.org/projects/tor/ticket/30847.
    
    (cherry picked from commit 618cdd24731c49ef62d2d4f4de46162eb5f3e5bb)
    ryneeverett committed Apr 25, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    e349f5c View commit details
  3. Merge pull request #86008 from ryneeverett/python-stem-unbroken2

    [20.03] pythonPackages.stem: unbroken
    worldofpeace authored Apr 25, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    6c2e7b2 View commit details
Showing with 2 additions and 3 deletions.
  1. +2 −3 pkgs/development/python-modules/stem/default.nix
5 changes: 2 additions & 3 deletions pkgs/development/python-modules/stem/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

buildPythonPackage rec {
pname = "stem";
version = "1.7.1";
version = "1.8.0";

src = fetchPypi {
inherit pname version;
sha256 = "18lc95pmc7i089nlsb06dsxyjl5wbhxfqgdxbjcia35ndh8z7sn9";
sha256 = "1hk8alc0r4m669ggngdfvryndd0fbx0w62sclcmg55af4ak8xd50";
};

postPatch = ''
@@ -26,6 +26,5 @@ buildPythonPackage rec {
homepage = https://stem.torproject.org/;
license = licenses.gpl3;
maintainers = with maintainers; [ phreedom ];
broken = true;
};
}