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-08-16 18:31:04 +01:00
|
|
|
version = "0.5.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-08-16 18:31:04 +01:00
|
|
|
sha256 = "f576e85132d34f5bf7df5183c2c6f94cfb32e528f53065345cf71329ba0b8924";
|
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
|
|
|
}
|
|
|
|
|