nixpkgs/pkgs/development/python-modules/titlecase/default.nix
Sandro 1c239a1c4f
python39Packages.titlecase: fix version number (#158433)
Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
2022-02-07 11:37:26 +01:00

53 lines
949 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, regex
, setuptools-scm
}:
buildPythonPackage rec {
pname = "titlecase";
version = "2.3";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "ppannuto";
repo = "python-titlecase";
rev = "v${version}";
sha256 = "169ywzn5wfzwyknqavspkdpwbx31nycxsxkl7iywwk71gs1lskkw";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
regex
];
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"titlecase/tests.py"
];
pythonImportsCheck = [
"titlecase"
];
meta = with lib; {
description = "Python library to capitalize strings as specified by the New York Times";
homepage = "https://github.com/ppannuto/python-titlecase";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}