python3Packages.furl: 2.1.0 -> 2.1.2

This commit is contained in:
Fabian Affolter 2021-07-07 16:24:20 +02:00
parent 68d0c4fc9c
commit 992fb22573

View file

@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, flake8
, orderedmultidict
, pytestCheckHook
@ -10,21 +9,13 @@
buildPythonPackage rec {
pname = "furl";
version = "2.1.0";
version = "2.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "08dnw3bs1mk0f1ccn466a5a7fi1ivwrp0jspav9arqpf3wd27q60";
sha256 = "sha256-99ujPq++59vIOWNTSyXnL4FsztSKxTGR7mC/zGKTORg=";
};
patches = [
(fetchpatch {
name = "tests_overcome_bpo42967.patch";
url = "https://github.com/gruns/furl/files/6030371/tests_overcome_bpo42967.patch.txt";
sha256 = "1l0lxmcp9x73kxy0ky2bh7zxa4n1cf1qxyyax97n90d1s3dc7k2q";
})
];
propagatedBuildInputs = [
orderedmultidict
six
@ -35,11 +26,6 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# see https://github.com/gruns/furl/issues/121
"join"
];
pythonImportsCheck = [ "furl" ];
meta = with lib; {