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

Commits on Nov 18, 2020

  1. isso: build from master

    * The published 0.12.2 version is broken therefore switch to build from
    master. Related Issue: isso-comments/isso#617
    * cleanup build inputs
    * use python3
    
    (cherry picked from commit 85c0767)
    
    + unmark broken
    Enteee authored and Jonathan Ringer committed Nov 18, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    vdemeester Vincent Demeester
    Copy the full SHA
    1e3b3f0 View commit details
Showing with 16 additions and 11 deletions.
  1. +16 −11 pkgs/servers/isso/default.nix
27 changes: 16 additions & 11 deletions pkgs/servers/isso/default.nix
Original file line number Diff line number Diff line change
@@ -1,26 +1,32 @@
{ stdenv, python2, fetchFromGitHub }:
{ stdenv, python3Packages, fetchFromGitHub }:

with python3Packages; buildPythonApplication rec {

with python2.pkgs; buildPythonApplication rec {
pname = "isso";
version = "0.12.2";
# Can not use 0.12.2 because of:
# https://github.com/posativ/isso/issues/617
version = "unstable-2020-09-14";

# no tests on PyPI
src = fetchFromGitHub {
owner = "posativ";
repo = pname;
rev = version;
sha256 = "18v8lzwgl5hcbnawy50lfp3wnlc0rjhrnw9ja9260awkx7jra9ba";
rev = "f4d2705d4f1b51f444d0629355a6fcbcec8d57b5";
sha256 = "02jgfzq3svd54zj09jj7lm2r7ypqqjynzxa9dgnnm0pqvq728wzr";
};

propagatedBuildInputs = [
bleach
cffi
configparser
html5lib
ipaddr
itsdangerous
jinja2
misaka
html5lib
werkzeug
bleach
flask-caching
];

buildInputs = [
cffi
];

checkInputs = [ nose ];
@@ -30,7 +36,6 @@ with python2.pkgs; buildPythonApplication rec {
'';

meta = with stdenv.lib; {
broken = true;
description = "A commenting server similar to Disqus";
homepage = "https://posativ.org/isso/";
license = licenses.mit;