python3Packages.ftfy: 6.1.1 -> 6.1.3

This commit is contained in:
Martin Weinelt
2023-12-20 20:44:20 +01:00
parent 3e24c1fb40
commit 91c02aa858
@@ -1,23 +1,34 @@
{ lib
, buildPythonPackage
, isPy3k
, fetchPypi
, pythonOlder
# build-system
, poetry-core
# dependencies
, wcwidth
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ftfy";
version = "6.1.1";
format = "setuptools";
version = "6.1.3";
pyproject = true;
disabled = !isPy3k;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-v8IBn4T82FFBkVIyCmN1YEoPFFnCgbWxmbLNDS5yf48=";
hash = "sha256-aTJ0rq2BHP8kweh4QWWqdVzS9uRCpexTXH1pf2QipCI=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
wcwidth
];