pythonPackages.inflection: init at 0.3.1

This commit is contained in:
NikolaMandic 2016-05-23 22:07:41 +00:00 committed by Frederik Rietdijk
parent 31bcdeea80
commit 2df4632004

View file

@ -10937,6 +10937,25 @@ in modules // {
};
};
inflection = buildPythonPackage rec {
version = "0.3.1";
name = "inflection-${version}";
src = pkgs.fetchurl {
url= "mirror://pypi/i/inflection/${name}.tar.gz";
sha256 = "1jhnxgnw8y3mbzjssixh6qkc7a3afc4fygajhqrqalnilyvpzshq";
};
disabled = isPy3k;
meta = {
homepage = https://github.com/jpvanhal/inflection;
description = "A port of Ruby on Rails inflector to Python";
maintainers = with maintainers; [ NikolaMandic ];
};
};
influxdb = buildPythonPackage rec {
name = "influxdb-0.1.12";
@ -27544,4 +27563,6 @@ in modules // {
};
};
};
}