mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
pythonPackages.titlecase: fix missing dependencies
This commit is contained in:
parent
ffde8a8e1e
commit
2a7b163871
@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user