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

Commits on Jun 18, 2019

  1. python37Packages.stripe: 2.29.3 -> 2.30.0

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/python3.7-stripe/versions
    r-ryantm authored and marsam committed Jun 18, 2019
    Copy the full SHA
    e1cbd3e View commit details
  2. Merge pull request #63401 from r-ryantm/auto-update/python3.7-stripe

    python37Packages.stripe: 2.29.3 -> 2.30.0
    marsam authored Jun 18, 2019
    Copy the full SHA
    20434f2 View commit details
Showing with 4 additions and 8 deletions.
  1. +4 −8 pkgs/development/python-modules/stripe/default.nix
12 changes: 4 additions & 8 deletions pkgs/development/python-modules/stripe/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
{ lib, buildPythonPackage, fetchPypi, requests, toml, pytest, pytestcov, pytest-mock, pytest_xdist }:
{ lib, buildPythonPackage, fetchPypi, requests, pytest, pytestcov, pytest-mock, pytest_xdist }:

buildPythonPackage rec {
pname = "stripe";
version = "2.29.3";
version = "2.30.0";

# Tests require network connectivity and there's no easy way to disable
# them. ~ C.
doCheck = false;

src = fetchPypi {
inherit pname version;
sha256 = "73f9af72ef8125e0d1c713177d006f1cbe95602beb3e10cb0b0a4ae358d1ae86";
sha256 = "de6be07c9e8a350d588278186316f66c72af7036aa5e917d1a924fb875249034";
};

postPatch = ''
substituteInPlace setup.py --replace "toml>=0.9,<0.10" "toml>=0.9"
'';

propagatedBuildInputs = [ toml requests ];
propagatedBuildInputs = [ requests ];

checkInputs = [ pytest pytestcov pytest-mock pytest_xdist ];