mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +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 {
|
buildPythonPackage rec {
|
||||||
pname = "titlecase";
|
pname = "titlecase";
|
||||||
@ -9,6 +9,8 @@ buildPythonPackage rec {
|
|||||||
sha256 = "16e279edf085293bc9c44a68ce959c7d6cd5c653e6b5669a3a3640015cb63eb6";
|
sha256 = "16e279edf085293bc9c44a68ce959c7d6cd5c653e6b5669a3a3640015cb63eb6";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ regex ];
|
||||||
|
|
||||||
checkInputs = [ nose ];
|
checkInputs = [ nose ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
@ -17,4 +19,3 @@ buildPythonPackage rec {
|
|||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user