pythonPackages.inflection: enable and add tests

This commit is contained in:
Ilya Kolpakov
2017-11-27 20:31:14 +01:00
parent a60513428d
commit 741d9c8c2d
2 changed files with 24 additions and 19 deletions

View File

@@ -0,0 +1,21 @@
{ lib, fetchurl, buildPythonPackage, pytest } :
buildPythonPackage rec {
version = "0.3.1";
name = "inflection-${version}";
src = fetchurl {
url= "mirror://pypi/i/inflection/${name}.tar.gz";
sha256 = "1jhnxgnw8y3mbzjssixh6qkc7a3afc4fygajhqrqalnilyvpzshq";
};
propagatedBuildInputs = [ 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;
};
}