0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python310Packages.w3lib: 2.0.1 -> 2.1.1

Changelog: https://github.com/scrapy/w3lib/blob/v2.1.1/NEWS
This commit is contained in:
Fabian Affolter 2022-12-19 17:12:05 +01:00
parent 3fca3bc7e7
commit 6ec77211c7

View file

@ -1,23 +1,22 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, six
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "w3lib"; pname = "w3lib";
version = "2.0.1"; version = "2.1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-E98V+MF7Fj3g/V+qiSwa0UPhkN/L25hTS7l16zfGx9Y="; hash = "sha256-DhGY8bdFGVtrPdGkzWYBH7+C8wpNnauu4fnlyG8CAnQ=";
}; };
propagatedBuildInputs = [
six
];
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
]; ];