python.pkgs.inflect: 0.2.5 -> 1.0.0
This commit is contained in:
15
pkgs/development/python-modules/inflect/default.nix
Normal file
15
pkgs/development/python-modules/inflect/default.nix
Normal 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 ];
|
||||
}
|
||||
Reference in New Issue
Block a user