3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #129540 from fabaff/bump-furl

python3Packages.furl: 2.1.0 -> 2.1.2
This commit is contained in:
Sandro 2021-07-08 12:05:39 +02:00 committed by GitHub
commit 0c892e758d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, fetchpatch
, flake8 , flake8
, orderedmultidict , orderedmultidict
, pytestCheckHook , pytestCheckHook
@ -10,21 +9,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "furl"; pname = "furl";
version = "2.1.0"; version = "2.1.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; 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 = [ propagatedBuildInputs = [
orderedmultidict orderedmultidict
six six
@ -35,11 +26,6 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
disabledTests = [
# see https://github.com/gruns/furl/issues/121
"join"
];
pythonImportsCheck = [ "furl" ]; pythonImportsCheck = [ "furl" ];
meta = with lib; { meta = with lib; {