tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python: stripe: 1.77.1 -> 1.77.2
Frederik Rietdijk
8 years ago
3a15eff8
51c21a45
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
stripe
default.nix
+2
-2
pkgs/development/python-modules/stripe/default.nix
···
3
3
4
4
buildPythonPackage rec {
5
5
pname = "stripe";
6
6
-
version = "1.77.1";
6
6
+
version = "1.77.2";
7
7
name = "${pname}-${version}";
8
8
9
9
# Tests require network connectivity and there's no easy way to disable
···
12
12
13
13
src = fetchPypi {
14
14
inherit pname version;
15
15
-
sha256 = "d1c638b417301849ff4ee0327332cfdec96edda83c79b08af307339138077d59";
15
15
+
sha256 = "3bcd55108dd2c0e853a91147ee843bc375f35767e64d0f7680e5bd82ddb7fbf1";
16
16
};
17
17
18
18
buildInputs = [ unittest2 mock ];