Merge pull request #173405 from fabaff/humanize-bump

python310Packages.humanize: 4.0.0 -> 4.1.0
main
Fabian Affolter 2 years ago committed by GitHub
commit c0c90a2008
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      pkgs/development/python-modules/humanize/default.nix

@ -1,25 +1,26 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, freezegun
, importlib-metadata
, pytestCheckHook
, pythonOlder
, setuptools-scm
, setuptools
, pytestCheckHook
, freezegun
, setuptools-scm
}:
buildPythonPackage rec {
version = "4.0.0";
version = "4.1.0";
pname = "humanize";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jmoiron";
owner = "python-humanize";
repo = pname;
rev = version;
sha256 = "sha256-v4OdZmUI2LCick4qCSGOHJ7jtWybwKTeTeIcly+QQQQ=";
hash = "sha256-5xL3gfEohDjnF085Pgx/PBXWWM76X4FU2KR+8OGshMw=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -30,6 +31,8 @@ buildPythonPackage rec {
propagatedBuildInputs = [
setuptools
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
checkInputs = [
@ -37,11 +40,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"humanize"
];
meta = with lib; {
description = "Python humanize utilities";
homepage = "https://github.com/jmoiron/humanize";
homepage = "https://github.com/python-humanize/humanize";
license = licenses.mit;
maintainers = with maintainers; [ rmcgibbo ];
};
}

Loading…
Cancel
Save