python.pkgs.inflect: 0.2.5 -> 1.0.0

This commit is contained in:
Jörg Thalheim
2018-09-03 01:15:59 +01:00
parent 86bd041196
commit 8e15622cf3
2 changed files with 16 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
{ buildPythonPackage, fetchPypi, setuptools_scm, nose, six }:
buildPythonPackage rec {
pname = "inflect";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "0ll34l5b2wsbcw9i2hvkhmq6szxrp7fzc2hjmpz1cvny81bhg3kx";
};
buildInputs = [ setuptools_scm ];
checkInputs = [ nose ];
propagatedBuildInputs = [ six ];
}