Merge pull request #100483 from uvNikita/python/titlecase-fix

pythonPackages.titlecase: fix missing dependencies
This commit is contained in:
Rok Garbas 2020-10-14 14:11:19 +02:00 committed by GitHub
commit 5054636e1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
};
}