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: 01d93cbbe15d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e639d3e844d7
Choose a head ref
  • 3 commits
  • 12 files changed
  • 2 contributors

Commits on Jan 10, 2020

  1. poetry2nix: 1.1.0 -> 1.2.0

    adisbladis committed Jan 10, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    9dbedf0 View commit details
  2. poetry: 1.0.0 -> 1.0.1

    adisbladis committed Jan 10, 2020
    Copy the full SHA
    e493969 View commit details
  3. Merge pull request #77437 from adisbladis/poetry-1_0_1

    poetry: 1.0.0 -> 1.0.1
    zimbatm authored Jan 10, 2020
    Copy the full SHA
    e639d3e View commit details
8 changes: 2 additions & 6 deletions pkgs/development/tools/poetry/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
{ lib, poetry2nix, python, fetchFromGitHub, runtimeShell }:


poetry2nix.mkPoetryApplication {

inherit python;

pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;

src = fetchFromGitHub {
owner = "sdispater";
repo = "poetry";
rev = "1.0.0";
sha256 = "05xlx9wnlrsjj3i4wawnvxadvqwsdh03401wpgingkbq0c50aimi";
};
src = fetchFromGitHub (lib.importJSON ./src.json);

# "Vendor" dependencies (for build-system support)
postPatch = ''
Loading