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

Commits on Oct 15, 2019

  1. reuse: 0.4.1 -> 0.5.0

    kirelagin authored and Lassulus committed Oct 15, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    rycee Robert Helgesson
    Copy the full SHA
    47a3b73 View commit details
Showing with 11 additions and 3 deletions.
  1. +11 −3 pkgs/tools/package-management/reuse/default.nix
14 changes: 11 additions & 3 deletions pkgs/tools/package-management/reuse/default.nix
Original file line number Diff line number Diff line change
@@ -4,16 +4,24 @@ with python3Packages;

buildPythonApplication rec {
pname = "reuse";
version = "0.4.1";
version = "0.5.0";

src = fetchFromGitHub {
owner = "fsfe";
repo = "reuse-tool";
rev = "v${version}";
sha256 = "0gwipwikhxsk0p8wvdl90xm7chfi2jywb1namzznyymifl1vsbgh";
sha256 = "1w17g6jvs715rjc93nnnqnfdphijq4ymj9jjkr3ccc286ywvn3ih";
};

propagatedBuildInputs = [ debian license-expression requests ];
propagatedBuildInputs = [
binaryornot
boolean-py
debian
jinja2
license-expression
requests
setuptools
];

checkInputs = [ pytest ];