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

Commits on Dec 15, 2020

  1. archivy: 0.9.2 -> 0.9.3

    siraben committed Dec 15, 2020
    Copy the full SHA
    20a9e43 View commit details

Commits on Dec 17, 2020

  1. Merge pull request #106968 from siraben/archivy-update

    archivy: 0.9.2 -> 0.9.3
    marsam authored Dec 17, 2020
    Copy the full SHA
    7f5a7cf View commit details
Showing with 8 additions and 8 deletions.
  1. +8 −8 pkgs/applications/misc/archivy/default.nix
16 changes: 8 additions & 8 deletions pkgs/applications/misc/archivy/default.nix
Original file line number Diff line number Diff line change
@@ -5,25 +5,25 @@ watchdog, wtforms }:

python3.pkgs.buildPythonApplication rec {
pname = "archivy";
version = "0.9.2";
version = "0.9.3";

src = fetchPypi {
inherit pname version;
sha256 = "5cb760da57dc9dcdd62c0af824993d1715ec7035915629b4046d8bf50442756c";
sha256 = "b6ff08a9ecd0a929663c36c73844ac5cb4dc847e69aae639a450c64d4320a506";
};

# Relax some dependencies
postPatch = ''
substituteInPlace requirements.txt \
--replace 'validators ==' 'validators >=' \
--replace 'elasticsearch ==' 'elasticsearch >=' \
--replace 'python-dotenv ==' 'python-dotenv >=' \
--replace 'beautifulsoup4 ==' 'beautifulsoup4 >=' \
--replace 'WTForms ==' 'WTForms >=' \
--replace 'python_dotenv ==' 'python_dotenv >=' \
--replace 'attrs == 20.2.0' 'attrs' \
--replace 'beautifulsoup4 ==' 'beautifulsoup4 >=' \
--replace 'elasticsearch ==' 'elasticsearch >=' \
--replace 'python_dotenv ==' 'python_dotenv >=' \
--replace 'python_frontmatter == 0.5.0' 'python_frontmatter' \
--replace 'requests ==' 'requests >='
--replace 'requests ==' 'requests >=' \
--replace 'validators ==' 'validators >=' \
--replace 'watchdog ==' 'watchdog >='
'';

propagatedBuildInputs = [