depot/third_party/nixpkgs/pkgs/development/python-modules/inflection/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

33 lines
721 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
isPy27,
pytest,
}:
buildPythonPackage rec {
pname = "inflection";
version = "0.5.1";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417";
};
nativeCheckInputs = [ pytest ];
# Suppress overly verbose output if tests run successfully
checkPhase = "pytest >/dev/null || pytest";
meta = {
homepage = "https://github.com/jpvanhal/inflection";
description = "A port of Ruby on Rails inflector to Python";
maintainers = with lib.maintainers; [
NikolaMandic
ilya-kolpakov
];
license = lib.licenses.mit;
};
}