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

Commits on Oct 14, 2019

  1. pyznap: 1.2.1 -> 1.4.3

    rbrewer123 authored and Jon committed Oct 14, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    jluttine Jaakko Luttinen
    Copy the full SHA
    01c1538 View commit details
Showing with 7 additions and 2 deletions.
  1. +7 −2 pkgs/tools/backup/pyznap/default.nix
9 changes: 7 additions & 2 deletions pkgs/tools/backup/pyznap/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
{ lib
, buildPythonApplication
, fetchPypi
, setuptools
}:

buildPythonApplication rec {
pname = "pyznap";
version = "1.2.1";
version = "1.4.3";

src = fetchPypi {
inherit pname version;
sha256 = "0pnngr4zdxkf6b570ikzvkrm3a8fr47w6crjaw7ln094qkniywvj";
sha256 = "00xpw6rmkq5cfjfw23mv0917wfzvb5zxj420p6yh0rnl3swh7gi8";
};

propagatedBuildInputs = [
setuptools
];

# tests aren't included in the PyPI packages
doCheck = false;