pythonPackages.titlecase: fix missing dependencies

This commit is contained in:
Nikita Uvarov
2020-10-14 11:52:10 +02:00
parent ffde8a8e1e
commit 2a7b163871

View File

@@ -1,4 +1,4 @@
{buildPythonPackage, lib, nose, fetchPypi}:
{ buildPythonPackage, lib, nose, fetchPypi, regex }:
buildPythonPackage rec {
pname = "titlecase";
@@ -9,6 +9,8 @@ buildPythonPackage rec {
sha256 = "16e279edf085293bc9c44a68ce959c7d6cd5c653e6b5669a3a3640015cb63eb6";
};
propagatedBuildInputs = [ regex ];
checkInputs = [ nose ];
meta = {
@@ -17,4 +19,3 @@ buildPythonPackage rec {
license = lib.licenses.mit;
};
}