2020-06-16 22:02:08 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, isPy27, pytest } :
|
2017-11-27 19:31:14 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-12-14 14:13:51 +00:00
|
|
|
pname = "inflection";
|
2020-06-06 07:47:13 +01:00
|
|
|
version = "0.4.0";
|
2020-06-16 22:02:08 +01:00
|
|
|
disabled = isPy27;
|
2017-11-27 19:31:14 +00:00
|
|
|
|
2017-12-14 14:13:51 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:13 +01:00
|
|
|
sha256 = "32a5c3341d9583ec319548b9015b7fbdf8c429cbcb575d326c33ae3a0e90d52c";
|
2017-12-14 14:13:51 +00:00
|
|
|
};
|
2017-11-27 19:31:14 +00:00
|
|
|
|
2017-12-14 14:13:51 +00:00
|
|
|
checkInputs = [ pytest ];
|
|
|
|
# Suppress overly verbose output if tests run successfully
|
|
|
|
checkPhase = ''pytest >/dev/null || pytest'';
|
2017-11-27 19:31:14 +00:00
|
|
|
|
2017-12-14 14:13:51 +00:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/jpvanhal/inflection";
|
2017-12-14 14:13:51 +00:00
|
|
|
description = "A port of Ruby on Rails inflector to Python";
|
|
|
|
maintainers = with lib.maintainers; [ NikolaMandic ilya-kolpakov ];
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
2017-11-27 19:31:14 +00:00
|
|
|
}
|
|
|
|
|