python3Packages.boltons: 20.2.0 -> 20.2.1

This commit is contained in:
Robert T. McGibbon 2021-03-25 19:41:04 -04:00
parent 97101da6b0
commit 69ecff63a6

View File

@ -1,19 +1,35 @@
{ lib, buildPythonPackage, fetchFromGitHub, pytest }: { lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, pytestCheckHook
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "boltons"; pname = "boltons";
version = "20.2.0"; version = "20.2.1";
# No tests in PyPi Tarball # No tests in PyPi Tarball
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mahmoud"; owner = "mahmoud";
repo = "boltons"; repo = "boltons";
rev = version; rev = version;
sha256 = "08rd6av8dp5n1vz6nybmayl1mfsmj66cskiaybfshcgix29ca803"; sha256 = "0vw0h0z81gfxgjfijqiza92ic0siv9xy65mklgj5d0dzr1k9waw8";
}; };
checkInputs = [ pytest ]; patches = [
checkPhase = "pytest tests"; (fetchpatch {
url = "https://github.com/mahmoud/boltons/commit/754afddf141ea26956c88c7e13fe5e7ca7942654.patch";
sha256 = "14kcq8pl4pmgcnlnmj1sh1yrksgym0kn0kgz2648g192svqkbpz8";
})
];
checkInputs = [ pytestCheckHook ];
disabledTests = [
# This test is broken without this PR, which has not yet been merged
# https://github.com/mahmoud/boltons/pull/283
"test_frozendict_ior"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/mahmoud/boltons"; homepage = "https://github.com/mahmoud/boltons";